From cd530c8290094091688fefcca10689bd960a1c8f Mon Sep 17 00:00:00 2001 From: Marco Dickert Date: Wed, 5 Jul 2017 10:34:18 +0200 Subject: [PATCH] fixed two syntax errors from the previous commit --- src/ifm.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/ifm.js b/src/ifm.js index 579ef52..35d17cd 100644 --- a/src/ifm.js +++ b/src/ifm.js @@ -33,8 +33,6 @@ function IFM( params ) { 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.template.filetabletow = " - /** * Shows a bootstrap modal * @@ -1033,7 +1031,7 @@ function IFM( params ) { switch( e.key ) { case 'Delete': if( self.config.delete ) { - if( && $('#filetable tr.selectedItem').length > 0 ) { + if( $('#filetable tr.selectedItem').length > 0 ) { e.preventDefault(); self.multiDeleteDialog(); } else {