mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 02:27:09 -07: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:
parent
dd112c1e1b
commit
1e4d11801e
1 changed files with 4 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue