Browse Source

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).
adaptive-webui-19844
Gabriele 10 years ago
parent
commit
1e4d11801e
  1. 4
      src/webui/www/public/scripts/prop-files.js

4
src/webui/www/public/scripts/prop-files.js

@ -248,6 +248,10 @@ var filesDynTable = new Class({ @@ -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…
Cancel
Save