]> source.dussan.org Git - jquery-ui.git/commitdiff
Tabs: Find panels using aria-controls instead of index for remove method. Fixes ...
authorScott González <scott.gonzalez@gmail.com>
Tue, 6 Sep 2011 17:01:01 +0000 (13:01 -0400)
committerScott González <scott.gonzalez@gmail.com>
Tue, 6 Sep 2011 17:01:01 +0000 (13:01 -0400)
ui/jquery.ui.tabs.js

index d4c5f6b69a48fec5a448a23379e87c589e9c4b55..a1bf72cb1357a7089d4c71d5d80089a4baa33783 100644 (file)
@@ -792,11 +792,14 @@ if ( $.uiBackCompat !== false ) {
                        index = this._getIndex( index );
                        var options = this.options,
                                tab = this.lis.eq( index ).remove(),
-                               panel = this.panels.eq( index ).remove();
+                               panel = this._getPanelForTab( tab.find( "a[aria-controls]" ) ).remove();
 
                        // If selected tab was removed focus tab to the right or
                        // in case the last tab was removed the tab to the left.
-                       if ( tab.hasClass( "ui-tabs-active" ) && this.anchors.length > 1) {
+                       // We check for more than 2 tabs, because if there are only 2,
+                       // then when we remove this tab, there will only be one tab left
+                       // so we don't need to detect which tab to activate.
+                       if ( tab.hasClass( "ui-tabs-active" ) && this.anchors.length > 2 ) {
                                this._activate( index + ( index + 1 < this.anchors.length ? 1 : -1 ) );
                        }