1
0
mirror of https://github.com/misterunknown/ifm.git synced 2025-08-10 10:04:01 +02:00

fixed two syntax errors from the previous commit

This commit is contained in:
Marco Dickert
2017-07-05 10:34:18 +02:00
parent a6b5ee9d5b
commit cd530c8290

View File

@@ -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 {