You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by mj...@apache.org on 2018/01/15 00:55:38 UTC

[04/10] guacamole-client git commit: GUACAMOLE-113: Remove unnecessary declerations and update comments.

GUACAMOLE-113: Remove unnecessary declerations and update comments.


Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/50c196d7
Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/50c196d7
Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/50c196d7

Branch: refs/heads/master
Commit: 50c196d703dc8fdace4bf18eec87d465e70d4010
Parents: ae9248f
Author: Nick Couchman <vn...@apache.org>
Authored: Wed Jan 3 14:05:07 2018 -0500
Committer: Nick Couchman <vn...@apache.org>
Committed: Wed Jan 3 14:05:07 2018 -0500

----------------------------------------------------------------------
 .../main/webapp/app/client/controllers/clientController.js    | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/50c196d7/guacamole/src/main/webapp/app/client/controllers/clientController.js
----------------------------------------------------------------------
diff --git a/guacamole/src/main/webapp/app/client/controllers/clientController.js b/guacamole/src/main/webapp/app/client/controllers/clientController.js
index d66525f..e952747 100644
--- a/guacamole/src/main/webapp/app/client/controllers/clientController.js
+++ b/guacamole/src/main/webapp/app/client/controllers/clientController.js
@@ -77,12 +77,9 @@ angular.module('client').controller('clientController', ['$scope', '$routeParams
         MENU_KEYS   = angular.extend({}, SHIFT_KEYS, ALT_KEYS, CTRL_KEYS);
 
     /**
-     * Keys needed to support the Ctrl-Alt-End hotkey for sending
-     * Ctrl-Alt-Delete.
+     * Keysym for sending the DELETE key when the Ctrl-Alt-End hotkey
+     * combo is pressed.
      */
-    CAD_KEYS    = angular.extend({}, ALT_KEYS, CTRL_KEYS, END_KEYS);
-    var CTRL_KEY    = 0xFFE3;
-    var ALT_KEY     = 0xFFE9;
     var DEL_KEY     = 0xFFFF;
 
     /**