diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-04-28 17:36:38 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-04-28 17:36:38 -0400 |
commit | 57d18cd6b7a3d5a6a1b3436481a2fbe1d835eb29 (patch) | |
tree | b7ba23b0af4579e796ca361fc3bfcea54064dcfc /ui/jquery.ui.tabs.js | |
parent | c974d0fc69849d9e7854a532da01f00587d04527 (diff) | |
download | jquery-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.js | 5 |
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 = { |