diff options
| author | Chris Rebert <[email protected]> | 2015-07-01 16:42:13 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-07-01 16:42:13 -0700 |
| commit | ef02c559455549ee6699e3cc19fec64bff953477 (patch) | |
| tree | f6d62162eabc102610e9dc6241eac89ce3f84e7b /docs/_includes | |
| parent | e723395cc3371d3d499dc2448baadcd7aa13b34a (diff) | |
| download | bootstrap-ef02c559455549ee6699e3cc19fec64bff953477.tar.xz bootstrap-ef02c559455549ee6699e3cc19fec64bff953477.zip | |
Document that Tab show method is async
[skip sauce]
Diffstat (limited to 'docs/_includes')
| -rw-r--r-- | docs/_includes/js/tabs.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/_includes/js/tabs.html b/docs/_includes/js/tabs.html index 5ce8a766e..033b42430 100644 --- a/docs/_includes/js/tabs.html +++ b/docs/_includes/js/tabs.html @@ -98,7 +98,7 @@ $('#myTabs li:eq(2) a').tab('show') // Select third tab (0-indexed) </p> <h4><code>.tab('show')</code></h4> - <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> + <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> {% highlight js %}$('#someTab').tab('show'){% endhighlight %} <h3 id="tabs-events">Events</h3> |
