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 90705cd commit a88b94eCopy full SHA for a88b94e
ui/jquery.ui.tabs.js
@@ -521,16 +521,16 @@ $.widget( "ui.tabs", {
521
522
this.xhr
523
.success(function( response ) {
524
- // TODO: IE resolves cached XHRs immediately
525
- // remove when core #10467 is fixed
+ // support: jQuery <1.8
+ // http://bugs.jquery.com/ticket/11778
526
setTimeout(function() {
527
panel.html( response );
528
that._trigger( "load", event, eventData );
529
}, 1 );
530
})
531
.complete(function( jqXHR, status ) {
532
533
534
535
if ( status === "abort" ) {
536
that.panels.stop( false, true );
0 commit comments