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:18:16 +0400
committerYohn <john.skem9@gmail.com>2012-12-23 13:18:16 +0400
commitd594d6377a7e9cda399c25a450b0d27df704d939 (patch)
treea75e5b66f623697046b86a1ea08281d47a111372 /js/bootstrap-tooltip.js
parent48211ad9f572504cdfa00273a66d701e62ec291d (diff)
adding container option to tooltips
Diffstat (limited to 'js/bootstrap-tooltip.js')
-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 d908b0cf81..82fa960789 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: ''
}