From ad8d64e360f4c182ce8fcc13a9401c7529b09167 Mon Sep 17 00:00:00 2001 From: ninadsp Date: Mon, 28 Jun 2010 21:21:14 +0530 Subject: [PATCH] The ajax notification div did not hide properly. Fixed it. --- js/functions.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/js/functions.js b/js/functions.js index a4827957b..6663318fb 100755 --- a/js/functions.js +++ b/js/functions.js @@ -1764,7 +1764,8 @@ function PMA_ajaxShowMessage(message, timeout) { .slideDown('medium') .delay(to) .slideUp('medium', function(){ - $(this).html(""); //Clear the message + $(this).hide() + .html(""); //Clear the message }); }, 'top.frame_content'); ajax_message_init = true; @@ -1775,7 +1776,8 @@ function PMA_ajaxShowMessage(message, timeout) { .slideDown('medium') .delay(to) .slideUp('medium', function() { - $(this).html(""); + $(this).hide() + .html(""); }) } }