aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-07-13 14:02:56 +0200
committerGitHub <noreply@github.com>2016-07-13 14:02:56 +0200
commit77642535cdae5edb8fe4c473332013dffae68aa1 (patch)
tree79508d42fde4f3bd9674187062dbe6dd793c52fe
parent27ba28880499a385fd1c16f925544baab854dac1 (diff)
parent2eb48426af90dfa6c1dd8e956c72ea54f7aa6e3d (diff)
downloadnextcloud-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.js4
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'
+ });
});