We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad53b55 commit 03939fcCopy full SHA for 03939fc
ui/jquery.ui.tabs.js
@@ -534,10 +534,6 @@ $.widget( "ui.tabs", {
534
panel: panel
535
};
536
537
- if ( this.xhr ) {
538
- this.xhr.abort();
539
- }
540
-
541
// not remote
542
if ( !url ) {
543
return;
@@ -566,7 +562,9 @@ $.widget( "ui.tabs", {
566
562
567
563
self.lis.eq( index ).removeClass( "ui-tabs-loading" );
568
564
569
- delete self.xhr;
565
+ if ( jqXHR === self.xhr ) {
+ delete self.xhr;
+ }
570
});
571
}
572
0 commit comments