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

remotes/origin/stable
Brice Maron 14 years ago
parent 8de7c36b4c
commit 2fa9e3279c
  1. 2
      files/js/files.js

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

Loading…
Cancel
Save