From 214e4a65cf576294b3b875e66b44d0533291ac70 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 8 Jan 2013 17:32:31 -0500 Subject: [PATCH] Continue qtip removal (not sure we needed a hard-coded style here, or even a specific style) --- js/functions.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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() + ); }); }