Skip to content

Commit baabe50

Browse files
committed
Remove default class
1 parent 0f4ff88 commit baabe50

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

site/content/docs/5.0/components/alerts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ var bsAlert = new bootstrap.Alert(myAlert)
106106

107107
This makes an alert listen for click events on descendant elements which have the `data-dismiss="alert"` attribute. (Not necessary when using the data-api's auto-initialization.)
108108

109-
{{< bs-table "table" >}}
109+
{{< bs-table >}}
110110
| Method | Description |
111111
| --- | --- |
112112
| `close` | Closes an alert by removing it from the DOM. If the `.fade` and `.show` classes are present on the element, the alert will fade out before it is removed. |
@@ -124,7 +124,7 @@ alert.close()
124124

125125
Bootstrap's alert plugin exposes a few events for hooking into alert functionality.
126126

127-
{{< bs-table "table" >}}
127+
{{< bs-table >}}
128128
| Event | Description |
129129
| --- | --- |
130130
| `close.bs.alert` | Fires immediately when the `close` instance method is called. |

site/content/docs/5.0/components/carousel.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ var carousel = new bootstrap.Carousel(myCarousel)
272272

273273
Options can be passed via data attributes or JavaScript. For data attributes, append the option name to `data-`, as in `data-interval=""`.
274274

275-
{{< bs-table "table" >}}
275+
{{< bs-table >}}
276276
| Name | Type | Default | Description |
277277
| --- | --- | --- | --- |
278278
| `interval` | number | `5000` | The amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle. |
@@ -299,7 +299,7 @@ var carousel = new bootstrap.Carousel(myCarousel, {
299299
})
300300
```
301301

302-
{{< bs-table "table" >}}
302+
{{< bs-table >}}
303303
| Method | Description |
304304
| --- | --- |
305305
| `cycle` | Cycles through the carousel items from left to right. |
@@ -323,7 +323,7 @@ Bootstrap's carousel class exposes two events for hooking into carousel function
323323

324324
All carousel events are fired at the carousel itself (i.e. at the `<div class="carousel">`).
325325

326-
{{< bs-table "table" >}}
326+
{{< bs-table >}}
327327
| Event type | Description |
328328
| --- | --- |
329329
| `slide.bs.carousel` | Fires immediately when the `slide` instance method is invoked. |

site/content/docs/5.0/components/collapse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ var bsCollapse = new bootstrap.Collapse(myCollapse, {
184184
})
185185
```
186186

187-
{{< bs-table "table" >}}
187+
{{< bs-table >}}
188188
| Method | Description |
189189
| --- | --- |
190190
| `toggle` | Toggles a collapsible element to shown or hidden. **Returns to the caller before the collapsible element has actually been shown or hidden** (i.e. before the `shown.bs.collapse` or `hidden.bs.collapse` event occurs). |
@@ -198,7 +198,7 @@ var bsCollapse = new bootstrap.Collapse(myCollapse, {
198198

199199
Bootstrap's collapse class exposes a few events for hooking into collapse functionality.
200200

201-
{{< bs-table "table" >}}
201+
{{< bs-table >}}
202202
| Event type | Description |
203203
| --- | --- |
204204
| `show.bs.collapse` | This event fires immediately when the `show` instance method is called. |

site/content/docs/5.0/components/dropdowns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ Note when `boundary` is set to any value other than `'scrollParent'`, the style
872872

873873
### Methods
874874

875-
{{< bs-table "table" >}}
875+
{{< bs-table >}}
876876
| Method | Description |
877877
| --- | --- |
878878
| `toggle` | Toggles the dropdown menu of a given navbar or tabbed navigation. |
@@ -889,7 +889,7 @@ All dropdown events are fired at the `.dropdown-menu`'s parent element and have
889889

890890
`hide.bs.dropdown` and `hidden.bs.dropdown` events have a `clickEvent` property (only when the original Event type is `click`) that contains an Event Object for the click event.
891891

892-
{{< bs-table "table" >}}
892+
{{< bs-table >}}
893893
| Event type | Description |
894894
| --- | --- |
895895
| `show.bs.dropdown` | Fires immediately when the show instance method is called. |

site/content/docs/5.0/components/list-group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ When showing a new tab, the events fire in the following order:
436436

437437
If no tab was already active, the `hide.bs.tab` and `hidden.bs.tab` events will not be fired.
438438

439-
{{< bs-table "table" >}}
439+
{{< bs-table >}}
440440
| Event type | Description |
441441
| --- | --- |
442442
| `show.bs.tab` | This event fires on tab show, but before the new tab has been shown. Use `event.target` and `event.relatedTarget` to target the active tab and the previous active tab (if available) respectively. |

site/content/docs/5.0/components/modal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ var myModal = new bootstrap.Modal(document.getElementById('myModal'), {
865865

866866
Bootstrap's modal class exposes a few events for hooking into modal functionality. All modal events are fired at the modal itself (i.e. at the `<div class="modal">`).
867867

868-
{{< bs-table "table" >}}
868+
{{< bs-table >}}
869869
| Event | Description |
870870
| --- | --- |
871871
| `show.bs.modal` | This event fires immediately when the `show` instance method is called. If caused by a click, the clicked element is available as the `relatedTarget` property of the event. |

site/content/docs/5.0/components/navs-tabs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ When showing a new tab, the events fire in the following order:
629629

630630
If no tab was already active, then the `hide.bs.tab` and `hidden.bs.tab` events will not be fired.
631631

632-
{{< bs-table "table" >}}
632+
{{< bs-table >}}
633633
| Event type | Description |
634634
| --- | --- |
635635
| `show.bs.tab` | This event fires on tab show, but before the new tab has been shown. Use `event.target` and `event.relatedTarget` to target the active tab and the previous active tab (if available) respectively. |

site/content/docs/5.0/components/popovers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ Options for individual popovers can alternatively be specified through the use o
203203

204204
### Events
205205

206-
{{< bs-table "table" >}}
206+
{{< bs-table >}}
207207
| Event | Description |
208208
| --- | --- |
209209
| `show.bs.popover` | This event fires immediately when the <code>show</code> instance method is called. |

site/content/docs/5.0/components/tooltips.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ var tooltip = bootstrap.Tooltip.getInstance(exampleTriggerEl) // Returns a Boots
216216

217217
### Events
218218

219-
{{< bs-table "table" >}}
219+
{{< bs-table >}}
220220
| Event | Description |
221221
| --- | --- |
222222
| `show.bs.tooltip` | This event fires immediately when the <code>show</code> instance method is called. |

site/content/docs/5.0/utilities/display.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ To hide elements simply use the `.d-none` class or one of the `.d-{sm,md,lg,xl,x
5555

5656
To show an element only on a given interval of screen sizes you can combine one `.d-*-none` class with a `.d-*-*` class, for example `.d-none .d-md-block .d-xl-none .d-xxl-none` will hide the element for all screen sizes except on medium and large devices.
5757

58-
{{< bs-table "table" >}}
58+
{{< bs-table >}}
5959
| Screen size | Class |
6060
| --- | --- |
6161
| Hidden on all | `.d-none` |

0 commit comments

Comments
 (0)