diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-07-13 14:02:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-13 14:02:56 +0200 |
commit | 77642535cdae5edb8fe4c473332013dffae68aa1 (patch) | |
tree | 79508d42fde4f3bd9674187062dbe6dd793c52fe | |
parent | 27ba28880499a385fd1c16f925544baab854dac1 (diff) | |
parent | 2eb48426af90dfa6c1dd8e956c72ea54f7aa6e3d (diff) | |
download | nextcloud-server-77642535cdae5edb8fe4c473332013dffae68aa1.tar.gz nextcloud-server-77642535cdae5edb8fe4c473332013dffae68aa1.zip |
Merge pull request #389 from nextcloud/more-tooltip
Use tooltip for background jobs info tooltip
-rw-r--r-- | core/js/backgroundjobs.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/js/backgroundjobs.js b/core/js/backgroundjobs.js index c3100792e9e..8d51d519c8d 100644 --- a/core/js/backgroundjobs.js +++ b/core/js/backgroundjobs.js @@ -23,5 +23,7 @@ $(document).ready(function(){ $.get( OC.webroot+'/cron.php' ); - $('.section .icon-info').tipsy({gravity: 'w'}); + $('.section .icon-info').tooltip({ + placement: 'right' + }); }); |