aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.tabs.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-04-28 17:36:38 -0400
committerScott González <scott.gonzalez@gmail.com>2012-04-28 17:36:38 -0400
commit57d18cd6b7a3d5a6a1b3436481a2fbe1d835eb29 (patch)
treeb7ba23b0af4579e796ca361fc3bfcea54064dcfc /ui/jquery.ui.tabs.js
parentc974d0fc69849d9e7854a532da01f00587d04527 (diff)
downloadjquery-ui-57d18cd6b7a3d5a6a1b3436481a2fbe1d835eb29.tar.gz
jquery-ui-57d18cd6b7a3d5a6a1b3436481a2fbe1d835eb29.zip
Removed some unused variables.
Diffstat (limited to 'ui/jquery.ui.tabs.js')
-rw-r--r--ui/jquery.ui.tabs.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js
index e42bcb1a2..026c50993 100644
--- a/ui/jquery.ui.tabs.js
+++ b/ui/jquery.ui.tabs.js
@@ -167,7 +167,6 @@ $.widget( "ui.tabs", {
refresh: function() {
var next,
- that = this,
options = this.options,
lis = this.list.children( ":has(a[href])" );
@@ -362,7 +361,6 @@ $.widget( "ui.tabs", {
// handles show/hide for selecting tabs
_toggle: function( event, eventData ) {
var that = this,
- options = that.options,
toShow = eventData.newPanel,
toHide = eventData.oldPanel;
@@ -434,8 +432,6 @@ $.widget( "ui.tabs", {
},
_destroy: function() {
- var o = this.options;
-
if ( this.xhr ) {
this.xhr.abort();
}
@@ -517,7 +513,6 @@ $.widget( "ui.tabs", {
load: function( index, event ) {
index = this._getIndex( index );
var that = this,
- options = this.options,
anchor = this.anchors.eq( index ),
panel = that._getPanelForTab( anchor ),
eventData = {