aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.tabs.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-04-25 08:10:39 -0400
committerScott González <scott.gonzalez@gmail.com>2011-04-25 08:11:52 -0400
commitc4c36e557ef2b3450bc365708064f7314bc6fdc4 (patch)
tree118b1f85496ec0118b31f2bcdbffbfd685ac5684 /ui/jquery.ui.tabs.js
parent6326da3fdb29ea4f40e39bc06abf14cde5ba5c8c (diff)
downloadjquery-ui-c4c36e557ef2b3450bc365708064f7314bc6fdc4.tar.gz
jquery-ui-c4c36e557ef2b3450bc365708064f7314bc6fdc4.zip
Accordion, Autocomplete, Tabs: Separate callbacks and options in the defaults.
Diffstat (limited to 'ui/jquery.ui.tabs.js')
-rwxr-xr-xui/jquery.ui.tabs.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js
index 699c1a5ee..82d3f186d 100755
--- a/ui/jquery.ui.tabs.js
+++ b/ui/jquery.ui.tabs.js
@@ -26,13 +26,15 @@ function getNextListId() {
$.widget( "ui.tabs", {
options: {
- activate: null,
active: null,
- beforeActivate: null,
- beforeLoad: null,
collapsible: false,
event: "click",
fx: null, // e.g. { height: 'toggle', opacity: 'toggle', duration: 200 }
+
+ // callbacks
+ activate: null,
+ beforeActivate: null,
+ beforeLoad: null,
load: null
},