From 8bfb295c1b56cce58ac43ee83b29a6c15bd5f5e9 Mon Sep 17 00:00:00 2001 From: Zac Echola Date: Thu, 20 Aug 2015 13:46:49 -0500 Subject: [PATCH] Fix container option example code --- docs/components/popovers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/components/popovers.md b/docs/components/popovers.md index 6a911345ed..da0effbfe2 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 %}