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:
authorThomas Shinnick <tshinnic@gmail.com>2015-10-24 08:15:50 +0300
committerChris Rebert <code@chrisrebert.com>2015-10-24 09:20:43 +0300
commite544bf4cf8af64a2a45ab9338fc4af63ba3049e1 (patch)
treea0a6e9d27784a37f0508560e2058eeed79abbf92
parent4461884f6979b0a6d39c88d57193ddddb23ea59a (diff)
Remove unnecessary .bd-popover class from docs
Also one spelling typo corrected. Closes #18043
-rw-r--r--docs/components/popovers.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/components/popovers.md b/docs/components/popovers.md
index e04b3acec9..9621bb7d80 100644
--- a/docs/components/popovers.md
+++ b/docs/components/popovers.md
@@ -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 %}