mirror of
https://github.com/misterunknown/ifm.git
synced 2025-08-09 17:46:31 +02:00
unset focus after changing the directory via #currentDir input field
This commit is contained in:
@@ -2575,6 +2575,7 @@ function IFM( params ) {
|
||||
if( e.keyCode == 13 ) {
|
||||
e.preventDefault();
|
||||
self.changeDirectory( e.target.value, { absolute: true } );
|
||||
e.target.blur();
|
||||
}
|
||||
};
|
||||
if( self.config.remoteupload )
|
||||
|
1
ifm.php
1
ifm.php
@@ -2575,6 +2575,7 @@ function IFM( params ) {
|
||||
if( e.keyCode == 13 ) {
|
||||
e.preventDefault();
|
||||
self.changeDirectory( e.target.value, { absolute: true } );
|
||||
e.target.blur();
|
||||
}
|
||||
};
|
||||
if( self.config.remoteupload )
|
||||
|
@@ -1544,6 +1544,7 @@ function IFM( params ) {
|
||||
if( e.keyCode == 13 ) {
|
||||
e.preventDefault();
|
||||
self.changeDirectory( e.target.value, { absolute: true } );
|
||||
e.target.blur();
|
||||
}
|
||||
};
|
||||
if( self.config.remoteupload )
|
||||
|
Reference in New Issue
Block a user