From 63375faa60cf83760cff33fa540b434b24b5c81b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 7 Jan 2013 16:53:07 -0500 Subject: [PATCH] Options no longer needed as they are in the default options inside PMA_tooltip() --- js/functions.js | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/js/functions.js b/js/functions.js index 65b80f7ac4..6db9788e26 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1558,14 +1558,6 @@ function PMA_ajaxShowMessage(message, timeout) // and add a tooltip so that the users know that it can be removed if (dismissable) { $retval.addClass('dismissable').css('cursor', 'pointer'); - /** - * @var tooltipOptions Options for "Dismiss notification" tooltip - * to remove any animation when showing and hiding - */ - var tooltipOptions = { - show: false, - hide: false - }; /** * Add a tooltip to the notification to let the user know that (s)he * can dismiss the ajax notification by clicking on it. @@ -1573,8 +1565,7 @@ function PMA_ajaxShowMessage(message, timeout) PMA_tooltip( $retval, 'span', - PMA_messages['strDismiss'], - tooltipOptions + PMA_messages['strDismiss'] ); }