diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-12-04 09:20:56 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-12-04 09:20:56 -0500 |
commit | 86f1087931dbae7ed82d8110c095093b5444270f (patch) | |
tree | 938f929eb7dc9d61c6d36f7364510e19b11acf16 /ui | |
parent | da240d9da104921534a18a9dc62ff1c15f0ed650 (diff) | |
download | jquery-ui-86f1087931dbae7ed82d8110c095093b5444270f.tar.gz jquery-ui-86f1087931dbae7ed82d8110c095093b5444270f.zip |
Revert "Tabs: Remove display property on hidden panels instead of setting display:block. Surfaced by domEqual now checking for style property (see d687a1b)."
This reverts commit b9068c1523f39da8a04c799eebc9adc8b83c7279.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.tabs.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js index d1c7448d6..dcb0c2768 100644 --- a/ui/jquery.ui.tabs.js +++ b/ui/jquery.ui.tabs.js @@ -718,9 +718,7 @@ $.widget( "ui.tabs", { } }); - this.panels.css({ - display: "" - }); + this.panels.show(); if ( this.options.heightStyle !== "content" ) { this.panels.css( "height", "" ); |