From 11ba5e2bcc43b8fc7b55ae276c7f95ca09c64493 Mon Sep 17 00:00:00 2001 From: pichalite Date: Mon, 18 Jul 2016 23:34:52 +0000 Subject: [PATCH] fix header tooltips --- public/src/app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/src/app.js b/public/src/app.js index d4a88929b1..65038d343e 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -351,6 +351,7 @@ app.cacheBuster = null; if (!utils.isTouchDevice()) { $(this).tooltip({ placement: 'bottom', + trigger: 'hover', title: $(this).attr('title') }); } @@ -359,6 +360,7 @@ app.cacheBuster = null; if (!utils.isTouchDevice()) { $('#search-form').parent().tooltip({ placement: 'bottom', + trigger: 'hover', title: $('#search-button i').attr('title') }); } @@ -366,6 +368,7 @@ app.cacheBuster = null; if (!utils.isTouchDevice()) { $('#user_dropdown').tooltip({ placement: 'bottom', + trigger: 'hover', title: $('#user_dropdown').attr('title') }); }