diff --git a/guacamole/src/main/frontend/src/app/client/directives/guacClient.js b/guacamole/src/main/frontend/src/app/client/directives/guacClient.js index 717bf6e7b..fb88f99f5 100644 --- a/guacamole/src/main/frontend/src/app/client/directives/guacClient.js +++ b/guacamole/src/main/frontend/src/app/client/directives/guacClient.js @@ -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 diff --git a/guacamole/src/main/frontend/src/app/clipboard/services/clipboardService.js b/guacamole/src/main/frontend/src/app/clipboard/services/clipboardService.js index 0c8409b54..8e8c95b71 100644 --- a/guacamole/src/main/frontend/src/app/clipboard/services/clipboardService.js +++ b/guacamole/src/main/frontend/src/app/clipboard/services/clipboardService.js @@ -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();