Skip to content
Snippets Groups Projects
Commit 75ff9aba authored by Brice Maron's avatar Brice Maron
Browse files

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

parent 70014c4f
Branches
No related tags found
No related merge requests found
$(document).ready(function() { $(document).ready(function() {
$('#fileList tr').each(function(){ $('#fileList tr').each(function(){
//little hack to set unescape filenames in attribute //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){ if($('tr[data-file]').length==0){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment