aboutsummaryrefslogtreecommitdiff
path: root/docs/components
diff options
context:
space:
mode:
authorZac Echola <[email protected]>2015-08-20 13:46:49 -0500
committerZac Echola <[email protected]>2015-08-20 13:46:49 -0500
commit8bfb295c1b56cce58ac43ee83b29a6c15bd5f5e9 (patch)
tree3335d1055863563b9d6a333fcbd896530d55cf3c /docs/components
parent761364f64fcbf50be7708d7ec15a9d1335c37523 (diff)
downloadbootstrap-8bfb295c1b56cce58ac43ee83b29a6c15bd5f5e9.tar.xz
bootstrap-8bfb295c1b56cce58ac43ee83b29a6c15bd5f5e9.zip
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 %}