diff --git a/javascript/index.html b/javascript/index.html index 4cab57ae82..0d72e418f5 100644 --- a/javascript/index.html +++ b/javascript/index.html @@ -408,7 +408,7 @@ </div>
To take advantage of the Bootstrap grid system within a modal, just nest .container-fluid
within the .modal-body
and then use the normal grid system classes within this container.
To take advantage of the Bootstrap grid system within a modal, just nest .row
s within the .modal-body
and then use the normal grid system classes.
To make tabs fade in, add .fade
to each .tab-pane
. The first tab pane must also have .in
to properly fade in initial content.
To make tabs fade in, add .fade
to each .tab-pane
. The first tab pane must also have .in
to make the initial content visible.
<div class="tab-content">
<div role="tabpanel" class="tab-pane fade in active" id="home">...</div>
<div role="tabpanel" class="tab-pane fade" id="profile">...</div>
@@ -1125,7 +1121,7 @@
.tab('show')
- Selects the given tab and shows its associated content. Any other tab that was previously selected becomes unselected and its associated content is hidden.
+ Selects the given tab and shows its associated content. Any other tab that was previously selected becomes unselected and its associated content is hidden. Returns to the caller before the tab pane has actually been shown (i.e. before the shown.bs.tab
event occurs).
$('#someTab').tab('show')
Events
@@ -1522,8 +1518,8 @@
Four directions
-
@@ -1680,7 +1676,7 @@ sagittis lacus vel augue laoreet rutrum faucibus.">
Options for individual popovers can alternatively be specified through the use of data attributes, as explained above.
$().popover(options)
Initializes popovers for an element collection.
@@ -2161,13 +2157,13 @@ sagittis lacus vel augue laoreet rutrum faucibus."> }).collapse('toggle')
Toggles a collapsible element to shown or hidden.
+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).
.collapse('show')
Shows a collapsible element.
+Shows a collapsible element. Returns to the caller before the collapsible element has actually been shown (i.e. before the shown.bs.collapse
event occurs).
.collapse('hide')
Hides a collapsible element.
+Hides a collapsible element. Returns to the caller before the collapsible element has actually been hidden (i.e. before the hidden.bs.collapse
event occurs).
Bootstrap's collapse class exposes a few events for hooking into collapse functionality.
@@ -2654,6 +2650,7 @@ sagittis lacus vel augue laoreet rutrum faucibus.">