diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-05-16 19:22:49 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-05-16 19:22:49 -0400 |
commit | a88b94ebeb2ed43c72936b254df8bdc211a56f09 (patch) | |
tree | b6b63b10ddca498889d507233eb87632ed2d9cc9 | |
parent | 90705cdffe58b0448a4520fef922ec7f28afd722 (diff) | |
download | jquery-ui-a88b94ebeb2ed43c72936b254df8bdc211a56f09.tar.gz jquery-ui-a88b94ebeb2ed43c72936b254df8bdc211a56f09.zip |
Tabs: Update todo to reference newer ticket.
-rw-r--r-- | ui/jquery.ui.tabs.js | 8 |
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 ); |