From f67477206be71960a14486e85c58be028d3f4219 Mon Sep 17 00:00:00 2001 From: Hendrik Leppelsack Date: Mon, 27 Jul 2015 15:56:03 +0200 Subject: [PATCH] fixed tooltip for modified date --- apps/files/js/filelist.js | 4 +++- core/js/js.js | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 183b5e909a..8236ef3b4a 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -822,7 +822,9 @@ "class": "modified", "title": formatted, "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' - }).text(text)); + }).text(text) + .tooltip({placement: 'top'}) + ); tr.find('.filesize').text(simpleSize); tr.append(td); return tr; diff --git a/core/js/js.js b/core/js/js.js index 2cc50dfb19..4082604b7e 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1245,7 +1245,6 @@ function initCore() { $('.selectedActions a').tipsy({gravity:'s', live:true}); $('a.action.delete').tipsy({gravity:'e', live:true}); $('a.action').tipsy({gravity:'s', live:true}); - $('td .modified').tipsy({gravity:'s', live:true}); $('td.lastLogin').tipsy({gravity:'s', html:true}); $('input').tipsy({gravity:'w'}); $('.extra-data').tipsy({gravity:'w', live:true});