Add tooltip to display full filename in download manager.

This commit is contained in:
Vikas Shashidhar 2017-09-26 12:54:04 +05:30
parent bf184b5c1e
commit ceae0aa742

View File

@ -109,6 +109,7 @@ function createDOM(arg) {
let h2FileName = document.createElement('h2');
h2FileName.classList.add('text-cutoff');
h2FileName.innerHTML = arg.fileName;
h2FileName.title = arg.fileName;
fileNameDiv.appendChild(h2FileName);
let fileProgressTitle = document.createElement('span');