Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/content/docs/5.0/components/alerts.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ This makes an alert listen for click events on descendant elements which have th
<code>dispose</code>
</td>
<td>
Destroys an element's alert.
Destroys an element's alert. (Removes stored data on the DOM element)
</td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/5.0/components/buttons.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ var bsButton = new bootstrap.Button(button)
<code>dispose</code>
</td>
<td>
Destroys an element's button.
Destroys an element's button. (Removes stored data on the DOM element)
</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/5.0/components/carousel.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ var carousel = new bootstrap.Carousel(myCarousel, {
</tr>
<tr>
<td><code>dispose</code></td>
<td>Destroys an element's carousel.</td>
<td>Destroys an element's carousel. (Removes stored data on the DOM element)</td>
</tr>
<tr>
<td><code>getInstance</code></td>
Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/5.0/components/collapse.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ var bsCollapse = new bootstrap.Collapse(myCollapse, {
</tr>
<tr>
<td><code>dispose</code></td>
<td>Destroys an element's collapse.</td>
<td>Destroys an element's collapse. (Removes stored data on the DOM element)</td>
</tr>
<tr>
<td><code>getInstance</code></td>
Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/5.0/components/dropdowns.md
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ Note when `boundary` is set to any value other than `'scrollParent'`, the style
<tr>
<td><code>dispose</code></td>
<td>
Destroys an element's dropdown.
Destroys an element's dropdown. (Removes stored data on the DOM element)
</td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/5.0/components/modal.md
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ Manually readjust the modal's position if the height of a modal changes while it

#### dispose

Destroys an element's modal.
Destroys an element's modal. (Removes stored data on the DOM element)

{{< highlight js >}}myModal.dispose(){{< /highlight >}}

Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/5.0/components/popovers.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ Toggles an element's popover. **Returns to the caller before the popover has act

#### dispose

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.
Hides and destroys an element's popover (Removes stored data on the DOM element). Popovers that use delegation (which are created using [the `selector` option](#options)) cannot be individually destroyed on descendant trigger elements.

{{< highlight js >}}myPopover.dispose(){{< /highlight >}}

Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/5.0/components/scrollspy.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ dataSpyList.forEach(function (dataSpyEl) {

#### dispose

Destroys an element's scrollspy.
Destroys an element's scrollspy. (Removes stored data on the DOM element)

#### getInstance

Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/5.0/components/tooltips.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ Toggles an element's tooltip. **Returns to the caller before the tooltip has act

#### dispose

Hides and destroys an element's tooltip. Tooltips 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 tooltip (Removes stored data on the DOM element). Tooltips that use delegation (which are created using [the `selector` option](#options)) cannot be individually destroyed on descendant trigger elements.

{{< highlight js >}}tooltip.dispose(){{< /highlight >}}

Expand Down