Fix title attribute for truncated titles in the drive

pull/1/head
yflory 2017-09-11 12:23:24 +02:00
parent 55fe882f64
commit 1aef844fc3
1 changed files with 1 additions and 1 deletions

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);
}
});