]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Remove unnecessary .bd-popover class from docs
authorThomas Shinnick <tshinnic@gmail.com>
Sat, 24 Oct 2015 05:15:50 +0000 (00:15 -0500)
committerChris Rebert <code@chrisrebert.com>
Sat, 24 Oct 2015 06:20:43 +0000 (23:20 -0700)
Also one spelling typo corrected.

Closes #18043

docs/components/popovers.md

index e04b3acec950a076185020be7d3327e054dc5ac3..9621bb7d807c2bdeb46746d59376411eac8240ff 100644 (file)
@@ -93,7 +93,7 @@ Four options are available: top, right, bottom, and left aligned.
 ## Live demo
 
 {% example html %}
-<button type="button" class="btn btn-lg btn-danger bd-popover" data-toggle="popover" title="Popover title" data-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
+<button type="button" class="btn btn-lg btn-danger" data-toggle="popover" title="Popover title" data-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
 {% endexample %}
 
 ### Four directions
@@ -145,7 +145,7 @@ For proper cross-browser and cross-platform behavior, you must use the `<a>` tag
 {% endcallout %}
 
 {% example html %}
-<a tabindex="0" class="btn btn-lg btn-danger bd-popover" role="button" data-toggle="popover" data-trigger="focus" title="Dismissible popover" data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</a>
+<a tabindex="0" class="btn btn-lg btn-danger" role="button" data-toggle="popover" data-trigger="focus" title="Dismissible popover" data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</a>
 {% endexample %}
 
 {% highlight js %}
@@ -306,7 +306,7 @@ Toggles an element's popover. **Returns to the caller before the popover has act
 
 #### `.popover('dispose')`
 
-Hides and destroys an element's popover. Popvoers that use delegation (which are created using [the `selector` option](#options)) cannot be individually destroyed on descendant trigger elements.
+Hides and destroys an element's popover. Popovers that use delegation (which are created using [the `selector` option](#options)) cannot be individually destroyed on descendant trigger elements.
 
 
 {% highlight js %}$('#element').popover('dispose'){% endhighlight %}