Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYohn <john.skem9@gmail.com>2012-12-23 13:21:02 +0400
committerYohn <john.skem9@gmail.com>2012-12-23 13:21:02 +0400
commitb6960d8cf9b3626b260bb41cb4454abc738ff46a (patch)
tree2589034b1d3e870ed55c2121b87349b94c4c5f80 /js/tests/unit/bootstrap-tooltip.js
parentd594d6377a7e9cda399c25a450b0d27df704d939 (diff)
Update js/tests/unit/bootstrap-tooltip.js
Diffstat (limited to 'js/tests/unit/bootstrap-tooltip.js')
-rw-r--r--js/tests/unit/bootstrap-tooltip.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/js/tests/unit/bootstrap-tooltip.js b/js/tests/unit/bootstrap-tooltip.js
index c44f75757a..a2206f2d7c 100644
--- a/js/tests/unit/bootstrap-tooltip.js
+++ b/js/tests/unit/bootstrap-tooltip.js
@@ -164,4 +164,14 @@ $(function () {
.tooltip('toggle')
ok($(".tooltip").is('.fade.in'), 'tooltip should be toggled in')
})
+
+ test("should place tooltips inside the body", function () {
+ var tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"></a>')
+ .appendTo('#qunit-fixture')
+ .tooltip({container:'body'})
+ .tooltip('show')
+ ok($("body > .tooltip").length, 'inside the body')
+ ok(!$("#qunit-fixture > .tooltip").length, 'not found in parent')
+ tooltip.tooltip('hide')
+ })
})