From 44e4c188dd308591837248077e209cab91f10f51 Mon Sep 17 00:00:00 2001 From: John Resig Date: Fri, 28 Jul 2006 04:54:50 +0000 Subject: [PATCH] Fixed issue with hide() notn reverting back to the correct display type. --- jquery/jquery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery/jquery.js b/jquery/jquery.js index a2a5218..606bd5c 100644 --- a/jquery/jquery.js +++ b/jquery/jquery.js @@ -1609,7 +1609,7 @@ jQuery.macros = { * @type jQuery */ hide: function(){ - this.oldblock = jQuery.css(this,"display"); + this.oldblock = this.oldblock || jQuery.css(this,"display"); if ( this.oldblock == "none" ) this.oldblock = "block"; this.style.display = "none"; -- 1.7.10.4