diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-04-23 10:15:17 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-04-23 10:15:17 -0400 |
commit | 7a5a77da50e5e2401043410434c49971ce504653 (patch) | |
tree | bd77148cbed152728b2d3001359cd1c1f0247660 /tests/unit/tooltip/tooltip_common.js | |
parent | 3b54760b51fde0e541d2b47c34475ab29a4eea79 (diff) | |
download | jquery-ui-7a5a77da50e5e2401043410434c49971ce504653.tar.gz jquery-ui-7a5a77da50e5e2401043410434c49971ce504653.zip |
Tests: Rename {widget}_defaults.js -> {widget}_common.js
Diffstat (limited to 'tests/unit/tooltip/tooltip_common.js')
-rw-r--r-- | tests/unit/tooltip/tooltip_common.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/unit/tooltip/tooltip_common.js b/tests/unit/tooltip/tooltip_common.js new file mode 100644 index 000000000..d12ee9519 --- /dev/null +++ b/tests/unit/tooltip/tooltip_common.js @@ -0,0 +1,20 @@ +TestHelpers.commonWidgetTests( "tooltip", { + defaults: { + content: function() {}, + disabled: false, + hide: true, + items: "[title]", + position: { + my: "left+15 center", + at: "right center", + collision: "flipfit flipfit" + }, + show: true, + tooltipClass: null, + + // callbacks + close: null, + create: null, + open: null + } +}); |