Manage More special chars in file listings. ';' is still problematic

This commit is contained in:
Brice Maron 2011-11-06 13:50:05 +01:00
parent 8de7c36b4c
commit 2fa9e3279c
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
$(document).ready(function() {
$('#fileList tr').each(function(){
//little hack to set unescape filenames in attribute
$(this).attr('data-file',decodeURI($(this).attr('data-file')));
$(this).attr('data-file',decodeURIComponent($(this).attr('data-file')));
});
if($('tr[data-file]').length==0){