From 04e86728dfa471ecd4fb0cf191fabb254f23ff2c Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 5 Jan 2013 08:00:47 -0500 Subject: [PATCH] Forgot to remove reference to qtip after this part was converted to jQuery UI tooltip --- js/functions.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/js/functions.js b/js/functions.js index ee16461001..0987c43e5f 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1548,10 +1548,7 @@ function PMA_ajaxShowMessage(message, timeout) .delay(timeout) .fadeOut('medium', function() { if ($(this).is('.dismissable')) { - // Here we should destroy the qtip instance, but - // due to a bug in qtip's implementation we can - // only hide it without throwing JS errors. - $(this).qtip('hide'); + $(this).tooltip('destroy'); } // Remove the notification $(this).remove();