aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/tooltip
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-05-30 18:27:48 -0400
committerScott González <scott.gonzalez@gmail.com>2011-05-30 18:27:48 -0400
commit1b52cefc26da3a3c5bcb9116db79f68dbcc5de81 (patch)
tree4c8aca6129237205a45807e31a8eaf487df96141 /tests/unit/tooltip
parente5186dc9309cddf4a70bad37de4b4c71d2018f5c (diff)
downloadjquery-ui-1b52cefc26da3a3c5bcb9116db79f68dbcc5de81.tar.gz
jquery-ui-1b52cefc26da3a3c5bcb9116db79f68dbcc5de81.zip
Widget: Fixed _show() and _hide() implementation and added tests.
Diffstat (limited to 'tests/unit/tooltip')
-rw-r--r--tests/unit/tooltip/tooltip_defaults.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/unit/tooltip/tooltip_defaults.js b/tests/unit/tooltip/tooltip_defaults.js
index ded3d4558..4b687bdcb 100644
--- a/tests/unit/tooltip/tooltip_defaults.js
+++ b/tests/unit/tooltip/tooltip_defaults.js
@@ -2,15 +2,19 @@ commonWidgetTests( "tooltip", {
defaults: {
content: function() {},
disabled: false,
+ hide: true,
items: "[title]",
position: {
my: "left+15 center",
at: "right center",
collision: "flip fit"
},
+ show: true,
tooltipClass: null,
// callbacks
- create: null
+ close: null,
+ create: null,
+ open: null
}
});