Fix title attribute for truncated titles in the drive

This commit is contained in:
yflory 2017-09-11 12:23:24 +02:00
parent 55fe882f64
commit 1aef844fc3

View File

@ -2058,7 +2058,7 @@ define([
if ($name.length === 0) { return; }
if ($name[0].scrollHeight > $name[0].clientHeight) {
var $tr = $truncated.clone();
$tr.attr('title', $name.attr('title'));
$tr.attr('title', $name.text());
$(el).append($tr);
}
});