GUACAMOLE-1446: Fixed a typo mistake ("propogation").

This commit is contained in:
Jimmy
2021-10-18 09:18:35 +03:00
parent 40d8535281
commit 67a8fae8b0
2 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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();