Merge pull request #4863 from pichalite/fix-tooltips

fix header tooltips
v1.18.x
Barış Soner Uşaklı 9 years ago committed by GitHub
commit 237a44cae3

@ -351,6 +351,7 @@ app.cacheBuster = null;
if (!utils.isTouchDevice()) { if (!utils.isTouchDevice()) {
$(this).tooltip({ $(this).tooltip({
placement: 'bottom', placement: 'bottom',
trigger: 'hover',
title: $(this).attr('title') title: $(this).attr('title')
}); });
} }
@ -359,6 +360,7 @@ app.cacheBuster = null;
if (!utils.isTouchDevice()) { if (!utils.isTouchDevice()) {
$('#search-form').parent().tooltip({ $('#search-form').parent().tooltip({
placement: 'bottom', placement: 'bottom',
trigger: 'hover',
title: $('#search-button i').attr('title') title: $('#search-button i').attr('title')
}); });
} }
@ -366,6 +368,7 @@ app.cacheBuster = null;
if (!utils.isTouchDevice()) { if (!utils.isTouchDevice()) {
$('#user_dropdown').tooltip({ $('#user_dropdown').tooltip({
placement: 'bottom', placement: 'bottom',
trigger: 'hover',
title: $('#user_dropdown').attr('title') title: $('#user_dropdown').attr('title')
}); });
} }

Loading…
Cancel
Save