mirror of
https://github.com/misterunknown/ifm.git
synced 2025-08-13 11:34:00 +02:00
fixed two syntax errors from the previous commit
This commit is contained in:
@@ -33,8 +33,6 @@ function IFM( params ) {
|
|||||||
this.fileChanged = false; // flag for check if file was changed already
|
this.fileChanged = false; // flag for check if file was changed already
|
||||||
this.currentDir = ""; // this is the global variable for the current directory; it is used for AJAX requests
|
this.currentDir = ""; // this is the global variable for the current directory; it is used for AJAX requests
|
||||||
|
|
||||||
this.template.filetabletow = "
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shows a bootstrap modal
|
* Shows a bootstrap modal
|
||||||
*
|
*
|
||||||
@@ -1033,7 +1031,7 @@ function IFM( params ) {
|
|||||||
switch( e.key ) {
|
switch( e.key ) {
|
||||||
case 'Delete':
|
case 'Delete':
|
||||||
if( self.config.delete ) {
|
if( self.config.delete ) {
|
||||||
if( && $('#filetable tr.selectedItem').length > 0 ) {
|
if( $('#filetable tr.selectedItem').length > 0 ) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
self.multiDeleteDialog();
|
self.multiDeleteDialog();
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user