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

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

parent 8de7c36b
No related branches found
No related tags found
No related merge requests found
$(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){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment