aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-05-16 19:22:49 -0400
committerScott González <scott.gonzalez@gmail.com>2012-05-16 19:22:49 -0400
commita88b94ebeb2ed43c72936b254df8bdc211a56f09 (patch)
treeb6b63b10ddca498889d507233eb87632ed2d9cc9
parent90705cdffe58b0448a4520fef922ec7f28afd722 (diff)
downloadjquery-ui-a88b94ebeb2ed43c72936b254df8bdc211a56f09.tar.gz
jquery-ui-a88b94ebeb2ed43c72936b254df8bdc211a56f09.zip
Tabs: Update todo to reference newer ticket.
-rw-r--r--ui/jquery.ui.tabs.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js
index 8a6b2ba2e..23c6ed58d 100644
--- a/ui/jquery.ui.tabs.js
+++ b/ui/jquery.ui.tabs.js
@@ -521,16 +521,16 @@ $.widget( "ui.tabs", {
this.xhr
.success(function( response ) {
- // TODO: IE resolves cached XHRs immediately
- // remove when core #10467 is fixed
+ // support: jQuery <1.8
+ // http://bugs.jquery.com/ticket/11778
setTimeout(function() {
panel.html( response );
that._trigger( "load", event, eventData );
}, 1 );
})
.complete(function( jqXHR, status ) {
- // TODO: IE resolves cached XHRs immediately
- // remove when core #10467 is fixed
+ // support: jQuery <1.8
+ // http://bugs.jquery.com/ticket/11778
setTimeout(function() {
if ( status === "abort" ) {
that.panels.stop( false, true );