mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-04-20 03:02:41 -04:00
Tabs: Don't apply a spinner when nested tabs are loading. Fixes #8529 - tabs with in tabs, heading appears as Loading....
This commit is contained in:
4
ui/jquery.ui.tabs.js
vendored
4
ui/jquery.ui.tabs.js
vendored
@@ -948,7 +948,9 @@ if ( $.uiBackCompat !== false ) {
|
||||
this._super();
|
||||
this._on({
|
||||
tabsbeforeload: function( event, ui ) {
|
||||
if ( !this.options.spinner ) {
|
||||
// Don't react to nested tabs or tabs that don't use a spinner
|
||||
if ( event.target !== this.element[ 0 ] ||
|
||||
!this.options.spinner ) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user