diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-11-13 18:29:08 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-11-13 18:29:08 +0000 |
commit | 73191c2beabdf139a0361eb3c7b2f01ff5080e84 (patch) | |
tree | fd298bdbcd288f9bea073e4c18f1c2648a908155 | |
parent | bddf0fdb7738f2a7a36a0cce7105de0a781da293 (diff) | |
download | jquery-ui-73191c2beabdf139a0361eb3c7b2f01ff5080e84.tar.gz jquery-ui-73191c2beabdf139a0361eb3c7b2f01ff5080e84.zip |
Tabs: Removed deprecated deselctable option (use collapsible instead).
Fixes #4031 - Tabs: Remove deselectable option
-rw-r--r-- | ui/jquery.ui.tabs.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js index 15bb282d7..b13aebaa9 100644 --- a/ui/jquery.ui.tabs.js +++ b/ui/jquery.ui.tabs.js @@ -17,9 +17,6 @@ var tabId = 0; $.widget("ui.tabs", { _init: function() { - if (this.options.deselectable !== undefined) { - this.options.collapsible = this.options.deselectable; - } this._tabify(true); }, @@ -32,9 +29,6 @@ $.widget("ui.tabs", { } else { this.options[key] = value; - if (key == 'deselectable') { - this.options.collapsible = value; - } this._tabify(); } }, |