Fix another problem of the so-called 'fix-special chars' commit.

This commit is contained in:
Brice Maron 2011-11-06 00:39:11 +01:00
parent 70014c4fd0
commit 75ff9abaca
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',unescape($(this).attr('data-file')));
$(this).attr('data-file',decodeURI($(this).attr('data-file')));
});
if($('tr[data-file]').length==0){