diff --git a/js/functions.js b/js/functions.js index c31eda74c5..be01bc50be 100644 --- a/js/functions.js +++ b/js/functions.js @@ -2859,12 +2859,11 @@ function PMA_showHints($div) $div = $("body"); } $div.find('.pma_hint').each(function () { - $(this).children('img').qtip({ - content: $(this).children('span').html(), - show: { delay: 0 }, - hide: { delay: 1000 }, - style: { background: '#ffffcc' } - }); + PMA_tooltip( + $(this).children('img'), + 'img', + $(this).children('span').html() + ); }); }