HDFS-12301. NN File Browser UI: Navigate to a path when enter is pressed
(cherry picked from commitf34646d652
) (cherry picked from commit895a35eac0
)
This commit is contained in:
parent
87c36d8b8b
commit
a611922de4
|
@ -337,6 +337,12 @@
|
|||
|
||||
var b = function() { browse_directory($('#directory').val()); };
|
||||
$('#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);
|
||||
if(dir == "") {
|
||||
window.location.hash = "/";
|
||||
|
|
Loading…
Reference in New Issue