From: Erik Sargent Date: Thu, 29 Nov 2012 02:58:42 +0000 (-0700) Subject: Enter X-Git-Tag: v5.0.0alpha1~360^2~10 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a73a263543c9b28264288f6c6600a35619b9bb17;p=nextcloud-server.git Enter --- diff --git a/apps/files/js/keyboardshortcuts.js b/apps/files/js/keyboardshortcuts.js index 8a99bb52691..95e1ce428c9 100644 --- a/apps/files/js/keyboardshortcuts.js +++ b/apps/files/js/keyboardshortcuts.js @@ -24,7 +24,8 @@ Files.bindKeyboardShortcuts = function (document, $) { ctrl: 16, esc: 27, downArrow: 40, - upArrow: 38 + upArrow: 38, + enter: 13 }; $(document).keydown(function(event){//check for modifier keys @@ -108,6 +109,15 @@ Files.bindKeyboardShortcuts = function (document, $) { } } + if($.inArray(keyCodes.enter, keys) !== -1){ + $("#fileList tr").each(function(index){ + if($(this).hasClass("mouseOver")){ + $(this).removeClass("mouseOver"); + $(this).find("span:first").trigger('click'); + } + }); + } + removeA(keys, event.keyCode); }); }; \ No newline at end of file