aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/tooltip/tooltip.html
diff options
context:
space:
mode:
authorAndrew Couch <acouch@bluewolf.com>2012-10-16 12:55:50 -0400
committerJörn Zaefferer <joern.zaefferer@gmail.com>2012-10-21 13:15:59 -0400
commit0b3e59f149054122d8948c29baa4bb174006d75e (patch)
treef7a653579b42f455e03fd4a83d7f6682e3593034 /tests/visual/tooltip/tooltip.html
parent3b2d1e7736be99671af70aa3b775d67b917517e5 (diff)
downloadjquery-ui-0b3e59f149054122d8948c29baa4bb174006d75e.tar.gz
jquery-ui-0b3e59f149054122d8948c29baa4bb174006d75e.zip
Tooltip: Do not attempt to position if tooltip is hidden. Fixed #8644 - Delayed tooltips set to track should reposition when being shown for the first time.
Diffstat (limited to 'tests/visual/tooltip/tooltip.html')
-rw-r--r--tests/visual/tooltip/tooltip.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/visual/tooltip/tooltip.html b/tests/visual/tooltip/tooltip.html
index 97fa99bb9..598af0ee8 100644
--- a/tests/visual/tooltip/tooltip.html
+++ b/tests/visual/tooltip/tooltip.html
@@ -91,7 +91,12 @@
}
});
- $( "#blurs-on-click" ).tooltip().click(function() {
+ $( "#blurs-on-click" ).tooltip({
+ track: true,
+ show: {
+ delay: 500
+ }
+ }).click(function() {
$( "#focus-on-me" ).focus();
});
});