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:
authorJacob Thornton <jacobthornton@gmail.com>2012-01-28 09:36:58 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-01-28 09:36:58 +0400
commit0255f47eb3f4967851d014a9ef6fdf49a37dc548 (patch)
treeab568ec377ece3e9b4bf1e58867d21aa3ea4d7cf /docs/assets/js/application.js
parent15d3a4797f3435d1531804369df87fa4e574b874 (diff)
add zindex option for tooltips/popovers and fix modal zindex doc example
Diffstat (limited to 'docs/assets/js/application.js')
-rw-r--r--docs/assets/js/application.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/assets/js/application.js b/docs/assets/js/application.js
index 02cc730bd3..a071a855b4 100644
--- a/docs/assets/js/application.js
+++ b/docs/assets/js/application.js
@@ -106,7 +106,14 @@ $(function () {
$('.tooltip-demo.well').tooltip({
selector: "a[rel=tooltip]"
})
- $('.tooltip-test').tooltip()
+
+ $('.tooltip-test').tooltip({
+ 'z-index': 3000
+ })
+
+ $('.popover-test').popover({
+ 'z-index': 3000
+ })
// popover demo
$("a[rel=popover]")