diff options
| author | Ben Combee <[email protected]> | 2013-08-25 14:49:15 -0500 |
|---|---|---|
| committer | Ben Combee <[email protected]> | 2013-08-25 23:07:43 -0500 |
| commit | 92bb465ba3a33dd53f61e01aad97abf10e4f7166 (patch) | |
| tree | 30620369b0f26cdea9184fedfeae7834e451ee75 | |
| parent | 4c2b15d6f5a00490b0d3e34771550702be669f4f (diff) | |
| download | bootstrap-92bb465ba3a33dd53f61e01aad97abf10e4f7166.tar.xz bootstrap-92bb465ba3a33dd53f61e01aad97abf10e4f7166.zip | |
javascript.html: add data-ride note
carousel docs were missing mention of the data-ride attribute
used to automatically start the carousel at load time
| -rw-r--r-- | javascript.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/javascript.html b/javascript.html index 6a0807952..4d3d08800 100644 --- a/javascript.html +++ b/javascript.html @@ -1756,6 +1756,7 @@ $('#myCollapsible').on('hidden.bs.collapse', function () { <h3>Via data attributes</h3> <p>Use data attributes to easily control the position of the carousel. <code>data-slide</code> accepts the keywords <code>prev</code> or <code>next</code>, which alters the slide position relative to its current position. Alternatively, use <code>data-slide-to</code> to pass a raw slide index to the carousel <code>data-slide-to="2"</code>, which shifts the slide position to a particular index beginning with <code>0</code>.</p> + <p>The <code>data-ride="carousel"</code> attribute is used to mark a carousel as animating starting at page load.</p> <h3>Via JavaScript</h3> <p>Call carousel manually with:</p> |
