You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Toggles a collapsible element to shown or hidden.</p>
232
+
<p>Toggles a collapsible element to shown or hidden.<strong>Returns to the caller before the collapsible element has actually been shown or hidden</strong> (i.e. before the <code>shown.bs.collapse</code> or <code>hidden.bs.collapse</code> event occurs).</p>
233
233
234
234
<h4><code>.collapse('show')</code></h4>
235
-
<p>Shows a collapsible element.</p>
235
+
<p>Shows a collapsible element.<strong>Returns to the caller before the collapsible element has actually been shown</strong> (i.e. before the <code>shown.bs.collapse</code> event occurs).</p>
236
236
237
237
<h4><code>.collapse('hide')</code></h4>
238
-
<p>Hides a collapsible element.</p>
238
+
<p>Hides a collapsible element.<strong>Returns to the caller before the collapsible element has actually been hidden</strong> (i.e. before the <code>hidden.bs.collapse</code> event occurs).</p>
239
239
240
240
<h3id="collapse-events">Events</h3>
241
241
<p>Bootstrap's collapse class exposes a few events for hooking into collapse functionality.</p>
Copy file name to clipboardExpand all lines: docs/_includes/js/tabs.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ <h4><code>$().tab</code></h4>
98
98
</p>
99
99
100
100
<h4><code>.tab('show')</code></h4>
101
-
<p>Selects the given tab and shows its associated content. Any other tab that was previously selected becomes unselected and its associated content is hidden.</p>
101
+
<p>Selects the given tab and shows its associated content. Any other tab that was previously selected becomes unselected and its associated content is hidden.<strong>Returns to the caller before the tab pane has actually been shown</strong> (i.e. before the <code>shown.bs.tab</code> event occurs).</p>
0 commit comments