diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-09-04 21:27:04 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-09-04 21:27:37 +0200 |
commit | f188f6cc2fed10bdc78a34df95b898a770bcf506 (patch) | |
tree | 421f3bc1c68aef6a8a60ba2287a1a8c1fb1f7762 /apps/files/js/filelist.js | |
parent | 41f135daeeff8ddb6914be786ebf4b90272b15b6 (diff) | |
download | nextcloud-server-f188f6cc2fed10bdc78a34df95b898a770bcf506.tar.gz nextcloud-server-f188f6cc2fed10bdc78a34df95b898a770bcf506.zip |
Fix some jslint warnings
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r-- | apps/files/js/filelist.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index e0cf516411a..85e5cfb14c2 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1,4 +1,4 @@ -FileList={ +var FileList={ useUndo:true, update:function(fileListHtml) { $('#fileList').empty().html(fileListHtml); @@ -14,7 +14,7 @@ FileList={ var extension=false; } html+='<td class="filename" style="background-image:url('+img+')"><input type="checkbox" />'; - html+='<a class="name" href="download.php?file='+$('#dir').val().replace(/</, '<').replace(/>/, '>')+'/'+name+'"><span class="nametext">'+basename + html+='<a class="name" href="download.php?file='+$('#dir').val().replace(/</, '<').replace(/>/, '>')+'/'+name+'"><span class="nametext">'+basename; if(extension){ html+='<span class="extension">'+extension+'</span>'; } |