aboutsummaryrefslogtreecommitdiff
path: root/docs/components
diff options
context:
space:
mode:
authorHeinrich Fenkart <[email protected]>2015-08-20 21:15:55 +0200
committerHeinrich Fenkart <[email protected]>2015-08-20 21:15:55 +0200
commitd16144cf2fb4d1b40cafcc80c8f7badf0cf68261 (patch)
tree33270a3c3081d56946b9f976b1cb51f7a28b005f /docs/components
parentd07782ca2a0c31d8efdea983248333492c849eb1 (diff)
parent8bfb295c1b56cce58ac43ee83b29a6c15bd5f5e9 (diff)
downloadbootstrap-d16144cf2fb4d1b40cafcc80c8f7badf0cf68261.tar.xz
bootstrap-d16144cf2fb4d1b40cafcc80c8f7badf0cf68261.zip
Merge pull request #17152 from zacechola/popover_container_example
v4 - Fix container option example code
Diffstat (limited to 'docs/components')
-rw-r--r--docs/components/popovers.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/components/popovers.md b/docs/components/popovers.md
index 6a911345e..da0effbfe 100644
--- a/docs/components/popovers.md
+++ b/docs/components/popovers.md
@@ -43,9 +43,9 @@ When you have some styles on a parent element that interfere with a popover, you
{% highlight js %}
$(function () {
- $('.example-popover').popover(
+ $('.example-popover').popover({
container: 'body'
- )
+ })
})
{% endhighlight %}