From: John Resig Date: Fri, 28 Jul 2006 04:54:50 +0000 (+0000) Subject: Fixed issue with hide() notn reverting back to the correct display type. X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=44e4c188dd308591837248077e209cab91f10f51 Fixed issue with hide() notn reverting back to the correct display type. --- 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";