summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--webclient/room/room-directive.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/room/room-directive.js b/webclient/room/room-directive.js
index 1d02a94c39..05382cfcd3 100644
--- a/webclient/room/room-directive.js
+++ b/webclient/room/room-directive.js
@@ -146,7 +146,7 @@ angular.module('RoomController')
 }])
 .directive('commandHistory', [ function() {
     return function (scope, element, attrs) {
-        element.bind("keydown keypress", function (event) {
+        element.bind("keydown", function (event) {
             var keycodePressed = event.which;
             var UP_ARROW = 38;
             var DOWN_ARROW = 40;