From 50c196d703dc8fdace4bf18eec87d465e70d4010 Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Wed, 3 Jan 2018 14:05:07 -0500 Subject: [PATCH] GUACAMOLE-113: Remove unnecessary declerations and update comments. --- .../main/webapp/app/client/controllers/clientController.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/guacamole/src/main/webapp/app/client/controllers/clientController.js b/guacamole/src/main/webapp/app/client/controllers/clientController.js index d66525f02..e9527479a 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; /**