aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYohn <[email protected]>2012-12-23 04:18:16 -0500
committerYohn <[email protected]>2012-12-23 04:18:16 -0500
commitd594d6377a7e9cda399c25a450b0d27df704d939 (patch)
treea75e5b66f623697046b86a1ea08281d47a111372
parent48211ad9f572504cdfa00273a66d701e62ec291d (diff)
downloadbootstrap-d594d6377a7e9cda399c25a450b0d27df704d939.tar.xz
bootstrap-d594d6377a7e9cda399c25a450b0d27df704d939.zip
adding container option to tooltips
-rw-r--r--js/bootstrap-tooltip.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/bootstrap-tooltip.js b/js/bootstrap-tooltip.js
index d908b0cf8..82fa96078 100644
--- a/js/bootstrap-tooltip.js
+++ b/js/bootstrap-tooltip.js
@@ -126,7 +126,8 @@
$tip
.detach()
.css({ top: 0, left: 0, display: 'block' })
- .insertAfter(this.$element)
+
+ this.options.container && $tip.appendTo(this.options.container).length || $tip.insertAfter(this.$element)
pos = this.getPosition()
@@ -279,6 +280,7 @@
, title: ''
, delay: 0
, html: false
+ , container: ''
}