diff options
| author | Jacob Thornton <[email protected]> | 2012-02-07 22:04:52 -0800 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-02-07 22:04:52 -0800 |
| commit | 04fd01d4b67b8f71fe58affb34fcf4907ccabc98 (patch) | |
| tree | fe57de581bfd774d42847f7c49e6ffe2bd8b959f | |
| parent | 139a07754303e1e53b34a0fca3b9c0a43ee5712b (diff) | |
| download | bootstrap-04fd01d4b67b8f71fe58affb34fcf4907ccabc98.tar.xz bootstrap-04fd01d4b67b8f71fe58affb34fcf4907ccabc98.zip | |
fix docs for carousel markup
| -rw-r--r-- | docs/assets/bootstrap.zip | bin | 52560 -> 52560 bytes | |||
| -rw-r--r-- | docs/javascript.html | 6 | ||||
| -rw-r--r-- | docs/templates/pages/javascript.mustache | 6 |
3 files changed, 8 insertions, 4 deletions
diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip Binary files differindex 90fa63336..132c95a7b 100644 --- a/docs/assets/bootstrap.zip +++ b/docs/assets/bootstrap.zip diff --git a/docs/javascript.html b/docs/javascript.html index 395394d02..28c0964f0 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -1304,10 +1304,12 @@ $('#myCollapsible').on('hidden', function () { <h3>Markup</h3> <p>Data attributes are integral to the carousel plugin. Check out the example code below for the various markup types.</p> <pre class="prettyprint linenums"> -<div class="carousel"> +<div id="myCarousel" class="carousel"> <!-- Carousel items --> <div class="carousel-inner"> - ... + <div class="active item">…</div> + <div class="item">…</div> + <div class="item">…</div> </div> <!-- Carousel nav --> <a class="carousel-control left" href="#myCarousel" data-slide="prev">&lsaquo;</a> diff --git a/docs/templates/pages/javascript.mustache b/docs/templates/pages/javascript.mustache index c24626f8a..3ff0ed8b6 100644 --- a/docs/templates/pages/javascript.mustache +++ b/docs/templates/pages/javascript.mustache @@ -1228,10 +1228,12 @@ $('#myCollapsible').on('hidden', function () { <h3>{{_i}}Markup{{/i}}</h3> <p>{{_i}}Data attributes are integral to the carousel plugin. Check out the example code below for the various markup types.{{/i}}</p> <pre class="prettyprint linenums"> -<div class="carousel"> +<div id="myCarousel" class="carousel"> <!-- {{_i}}Carousel items{{/i}} --> <div class="carousel-inner"> - ... + <div class="active item">…</div> + <div class="item">…</div> + <div class="item">…</div> </div> <!-- {{_i}}Carousel nav{{/i}} --> <a class="carousel-control left" href="#myCarousel" data-slide="prev">&lsaquo;</a> |
