Merge pull request #17910 from owncloud/fix-modified-tooltip
Fix tooltip for modification time
This commit is contained in:
commit
4076f84f88
2 changed files with 3 additions and 2 deletions
|
@ -822,7 +822,9 @@
|
||||||
"class": "modified",
|
"class": "modified",
|
||||||
"title": formatted,
|
"title": formatted,
|
||||||
"style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')'
|
"style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')'
|
||||||
}).text(text));
|
}).text(text)
|
||||||
|
.tooltip({placement: 'top'})
|
||||||
|
);
|
||||||
tr.find('.filesize').text(simpleSize);
|
tr.find('.filesize').text(simpleSize);
|
||||||
tr.append(td);
|
tr.append(td);
|
||||||
return tr;
|
return tr;
|
||||||
|
|
|
@ -1245,7 +1245,6 @@ function initCore() {
|
||||||
$('.selectedActions a').tipsy({gravity:'s', live:true});
|
$('.selectedActions a').tipsy({gravity:'s', live:true});
|
||||||
$('a.action.delete').tipsy({gravity:'e', live:true});
|
$('a.action.delete').tipsy({gravity:'e', live:true});
|
||||||
$('a.action').tipsy({gravity:'s', live:true});
|
$('a.action').tipsy({gravity:'s', live:true});
|
||||||
$('td .modified').tipsy({gravity:'s', live:true});
|
|
||||||
$('td.lastLogin').tipsy({gravity:'s', html:true});
|
$('td.lastLogin').tipsy({gravity:'s', html:true});
|
||||||
$('input').tipsy({gravity:'w'});
|
$('input').tipsy({gravity:'w'});
|
||||||
$('.extra-data').tipsy({gravity:'w', live:true});
|
$('.extra-data').tipsy({gravity:'w', live:true});
|
||||||
|
|
Loading…
Reference in a new issue