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
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,