diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-11-09 14:52:57 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-11-09 14:52:57 -0500 |
commit | fd48568c402847df8af59166c33549f0d19feb4b (patch) | |
tree | 747f074dc42ffe8b27bea27cfcc7f57c0dca7e64 /ui | |
parent | dbaecf0ede6e8dcd6e80adfb2bd8826ddd648136 (diff) | |
download | jquery-ui-fd48568c402847df8af59166c33549f0d19feb4b.tar.gz jquery-ui-fd48568c402847df8af59166c33549f0d19feb4b.zip |
Tabs: Show panels on destroy. Fixes #8795 - Tabs: 'display: none;' attribute is not removed from tabs when destroy is called.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.tabs.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js index 49b6d7bf1..5b5227128 100644 --- a/ui/jquery.ui.tabs.js +++ b/ui/jquery.ui.tabs.js @@ -716,6 +716,8 @@ $.widget( "ui.tabs", { } }); + this.panels.show(); + if ( this.options.heightStyle !== "content" ) { this.panels.css( "height", "" ); } |