mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 05:31:22 +00:00
GUACAMOLE-1446: Fixed a typo mistake ("propogation").
This commit is contained in:
@@ -558,7 +558,7 @@ angular.module('client').directive('guacClient', [function guacClient() {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Displays a visual indication that dropping the file currently
|
* Displays a visual indication that dropping the file currently
|
||||||
* being dragged is possible. Further propogation and default behavior
|
* being dragged is possible. Further propagation and default behavior
|
||||||
* of the given event is automatically prevented.
|
* of the given event is automatically prevented.
|
||||||
*
|
*
|
||||||
* @param {Event} e
|
* @param {Event} e
|
||||||
@@ -577,7 +577,7 @@ angular.module('client').directive('guacClient', [function guacClient() {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes the visual indication that dropping the file currently
|
* Removes the visual indication that dropping the file currently
|
||||||
* being dragged is possible. Further propogation and default behavior
|
* being dragged is possible. Further propagation and default behavior
|
||||||
* of the given event is automatically prevented.
|
* of the given event is automatically prevented.
|
||||||
*
|
*
|
||||||
* @param {Event} e
|
* @param {Event} e
|
||||||
|
@@ -88,12 +88,12 @@ angular.module('clipboard').factory('clipboardService', ['$injector',
|
|||||||
document.body.appendChild(clipboardContent);
|
document.body.appendChild(clipboardContent);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stops the propogation of the given event through the DOM tree. This is
|
* Stops the propagation of the given event through the DOM tree. This is
|
||||||
* identical to invoking stopPropogation() on the event directly, except
|
* identical to invoking stopPropagation() on the event directly, except
|
||||||
* that this function is usable as an event handler itself.
|
* that this function is usable as an event handler itself.
|
||||||
*
|
*
|
||||||
* @param {Event} e
|
* @param {Event} e
|
||||||
* The event whose propogation through the DOM tree should be stopped.
|
* The event whose propagation through the DOM tree should be stopped.
|
||||||
*/
|
*/
|
||||||
var stopEventPropagation = function stopEventPropagation(e) {
|
var stopEventPropagation = function stopEventPropagation(e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
Reference in New Issue
Block a user