From a73a263543c9b28264288f6c6600a35619b9bb17 Mon Sep 17 00:00:00 2001
From: Erik Sargent <esthepiking@gmail.com>
Date: Wed, 28 Nov 2012 19:58:42 -0700
Subject: [PATCH] Enter

---
 apps/files/js/keyboardshortcuts.js | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/apps/files/js/keyboardshortcuts.js b/apps/files/js/keyboardshortcuts.js
index 8a99bb5269..95e1ce428c 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
-- 
GitLab