diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-05-14 14:40:06 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-05-14 14:40:06 -0400 |
commit | d4318a5f4c216e1184b6e90c17214b6e6cfbb0fb (patch) | |
tree | 275afa94d7165f7b5de2fabb072a1f2a76eaff3d /tests/unit | |
parent | 1304c50532b65738a7fc3c9deb3943f7de308539 (diff) | |
download | jquery-ui-d4318a5f4c216e1184b6e90c17214b6e6cfbb0fb.tar.gz jquery-ui-d4318a5f4c216e1184b6e90c17214b6e6cfbb0fb.zip |
Tabs: Replaced fx option with show and hide options. Fixes #8319 - Tabs: Deprecate fx option.
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/tabs/tabs_common.js | 3 | ||||
-rw-r--r-- | tests/unit/tabs/tabs_common_deprecated.js | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/tests/unit/tabs/tabs_common.js b/tests/unit/tabs/tabs_common.js index 7ffb05da4..b98ff3575 100644 --- a/tests/unit/tabs/tabs_common.js +++ b/tests/unit/tabs/tabs_common.js @@ -4,7 +4,8 @@ TestHelpers.commonWidgetTests( "tabs", { collapsible: false, disabled: false, event: "click", - fx: null, + hide: null, + show: null, // callbacks activate: null, diff --git a/tests/unit/tabs/tabs_common_deprecated.js b/tests/unit/tabs/tabs_common_deprecated.js index fdcff21b3..718ae8272 100644 --- a/tests/unit/tabs/tabs_common_deprecated.js +++ b/tests/unit/tabs/tabs_common_deprecated.js @@ -7,9 +7,11 @@ TestHelpers.commonWidgetTests( "tabs", { cookie: null, disabled: false, event: "click", + hide: null, fx: null, idPrefix: "ui-tabs-", panelTemplate: "<div></div>", + // show: null, // conflicts with old show callback spinner: "<em>Loading…</em>", tabTemplate: "<li><a href='#{href}'><span>#{label}</span></a></li>", |