Jelajahi Sumber

HDFS-12301. NN File Browser UI: Navigate to a path when enter is pressed

(cherry picked from commit f34646d652310442cb5339aabbbb269f10dfa838)
Ravi Prakash 7 tahun lalu
induk
melakukan
895a35eac0

+ 6 - 0
hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/explorer.js

@@ -370,6 +370,12 @@
 
 
     var b = function() { browse_directory($('#directory').val()); };
     var b = function() { browse_directory($('#directory').val()); };
     $('#btn-nav-directory').click(b);
     $('#btn-nav-directory').click(b);
+    //Also navigate to the directory when a user presses enter.
+    $('#directory').on('keyup', function (e) {
+      if (e.which == 13) {
+        browse_directory($('#directory').val());
+      }
+    });
     var dir = window.location.hash.slice(1);
     var dir = window.location.hash.slice(1);
     if(dir == "") {
     if(dir == "") {
       window.location.hash = "/";
       window.location.hash = "/";