1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-20 21:26:53 +00:00

(trunk web) allow file names to break on \ _ or .

This commit is contained in:
Kevin Glowacz 2009-05-24 22:45:41 +00:00
parent 7901f908af
commit 8cafb677da

View file

@ -667,7 +667,7 @@ TorrentFile.prototype = {
var file_div = document.createElement('div');
file_div.className = "inspector_torrent_file_list_entry_name";
file_div.textContent = this.name;
file_div.innerHTML = this.name.replace(/([\/_\.])/g, "$1​");
var prog_div = document.createElement('div');
prog_div.className = "inspector_torrent_file_list_entry_progress";