1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-03-10 20:31:47 +00:00

WebUI: Add title attribute to filename cells in content tab

This will show the entire file path in a tooltip. This is useful
especially since bb1649a797 ("WebUI: return full paths to files).
This commit is contained in:
Gabriele 2015-03-04 20:00:00 +01:00
parent dd112c1e1b
commit 1e4d11801e

View File

@ -248,6 +248,10 @@ var filesDynTable = new Class({
});
td.adopt(tree_img, createDownloadedCB(id, row[i]));
break;
case 1:
td.set('html', row[i]);
td.set('title', row[i]);
break;
case 3:
td.adopt(new ProgressBar(row[i].toFloat(), {
'id': 'pbf_' + id,