From 35092d01bfaa696dd4c7ea44391c7db66bbdeae1 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Tue, 4 Dec 2012 16:36:11 +0000 Subject: [PATCH] Show ajax message immediately --- js/functions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/functions.js b/js/functions.js index 677d9487c7..8492f17e70 100644 --- a/js/functions.js +++ b/js/functions.js @@ -1291,7 +1291,7 @@ AJAX.registerTeardown('functions.js', function() { * Jquery Coding for inline editing SQL_QUERY */ AJAX.registerOnload('functions.js', function() { - // If we are coming back to the page by clicking forward button + // If we are coming back to the page by clicking forward button // of the browser, bind the code mirror to inline query editor. bindCodeMirrorToInlineEditor(); $("a.inline_edit_sql").live('click', function() { @@ -1504,7 +1504,7 @@ function PMA_ajaxShowMessage(message, timeout) .hide() .appendTo("#loading_parent") .html(message) - .fadeIn('medium'); + .show(); // If the notification is self-closing we should create a callback to remove it if (self_closing) { $retval