mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +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
|
||||
* 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.
|
||||
*
|
||||
* @param {Event} e
|
||||
@@ -577,7 +577,7 @@ angular.module('client').directive('guacClient', [function guacClient() {
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*
|
||||
* @param {Event} e
|
||||
|
@@ -88,12 +88,12 @@ angular.module('clipboard').factory('clipboardService', ['$injector',
|
||||
document.body.appendChild(clipboardContent);
|
||||
|
||||
/**
|
||||
* Stops the propogation of the given event through the DOM tree. This is
|
||||
* identical to invoking stopPropogation() on the event directly, except
|
||||
* Stops the propagation of the given event through the DOM tree. This is
|
||||
* identical to invoking stopPropagation() on the event directly, except
|
||||
* that this function is usable as an event handler itself.
|
||||
*
|
||||
* @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) {
|
||||
e.stopPropagation();
|
||||
|
Reference in New Issue
Block a user