Fixed issue with hide() notn reverting back to the correct display type.
This commit is contained in:
parent
5d0b503c6d
commit
44e4c188dd
1 changed files with 1 additions and 1 deletions
2
jquery/jquery.js
vendored
2
jquery/jquery.js
vendored
|
@ -1609,7 +1609,7 @@ jQuery.macros = {
|
||||||
* @type jQuery
|
* @type jQuery
|
||||||
*/
|
*/
|
||||||
hide: function(){
|
hide: function(){
|
||||||
this.oldblock = jQuery.css(this,"display");
|
this.oldblock = this.oldblock || jQuery.css(this,"display");
|
||||||
if ( this.oldblock == "none" )
|
if ( this.oldblock == "none" )
|
||||||
this.oldblock = "block";
|
this.oldblock = "block";
|
||||||
this.style.display = "none";
|
this.style.display = "none";
|
||||||
|
|
Loading…
Add table
Reference in a new issue