diff options
| author | Mark Otto <[email protected]> | 2012-11-22 12:06:36 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-11-22 12:06:36 -0800 |
| commit | 5d1b4206b1ed88e40a1f3029dc9b5dccebe7a110 (patch) | |
| tree | 414650a712db8e1ee5178e914dcbf8f55c3e012d /docs | |
| parent | 8df2811d4981f5b3cc9291ac1c8c7fddb41427c6 (diff) | |
| download | bootstrap-5d1b4206b1ed88e40a1f3029dc9b5dccebe7a110.tar.xz bootstrap-5d1b4206b1ed88e40a1f3029dc9b5dccebe7a110.zip | |
Fixes #5986: single toggle button html examples
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/javascript.html | 14 | ||||
| -rw-r--r-- | docs/templates/pages/javascript.mustache | 14 |
2 files changed, 14 insertions, 14 deletions
diff --git a/docs/javascript.html b/docs/javascript.html index ef8d62a34..f07f28909 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -1137,7 +1137,7 @@ $('#my-alert').bind('closed', function () { <div class="bs-docs-example" style="padding-bottom: 24px;"> <button type="button" class="btn btn-primary" data-toggle="button">Single Toggle</button> </div> - <pre class="prettyprint linenums"><button type="button" class="btn" data-toggle="button">Single Toggle</button></pre> + <pre class="prettyprint linenums"><button type="button" class="btn btn-primary" data-toggle="button">Single Toggle</button></pre> <h4>Checkbox</h4> <p>Add data-toggle="buttons-checkbox" for checkbox style toggling on btn-group.</p> @@ -1150,9 +1150,9 @@ $('#my-alert').bind('closed', function () { </div> <pre class="prettyprint linenums"> <div class="btn-group" data-toggle="buttons-checkbox"> - <button type="button" class="btn">Left</button> - <button type="button" class="btn">Middle</button> - <button type="button" class="btn">Right</button> + <button type="button" class="btn btn-primary">Left</button> + <button type="button" class="btn btn-primary">Middle</button> + <button type="button" class="btn btn-primary">Right</button> </div> </pre> @@ -1167,9 +1167,9 @@ $('#my-alert').bind('closed', function () { </div> <pre class="prettyprint linenums"> <div class="btn-group" data-toggle="buttons-radio"> - <button type="button" class="btn">Left</button> - <button type="button" class="btn">Middle</button> - <button type="button" class="btn">Right</button> + <button type="button" class="btn btn-primary">Left</button> + <button type="button" class="btn btn-primary">Middle</button> + <button type="button" class="btn btn-primary">Right</button> </div> </pre> diff --git a/docs/templates/pages/javascript.mustache b/docs/templates/pages/javascript.mustache index 7b07d5759..22aaafd93 100644 --- a/docs/templates/pages/javascript.mustache +++ b/docs/templates/pages/javascript.mustache @@ -1067,7 +1067,7 @@ $('#my-alert').bind('closed', function () { <div class="bs-docs-example" style="padding-bottom: 24px;"> <button type="button" class="btn btn-primary" data-toggle="button">{{_i}}Single Toggle{{/i}}</button> </div>{{! /example }} - <pre class="prettyprint linenums"><button type="button" class="btn" data-toggle="button">Single Toggle</button></pre> + <pre class="prettyprint linenums"><button type="button" class="btn btn-primary" data-toggle="button">Single Toggle</button></pre> <h4>{{_i}}Checkbox{{/i}}</h4> <p>{{_i}}Add data-toggle="buttons-checkbox" for checkbox style toggling on btn-group.{{/i}}</p> @@ -1080,9 +1080,9 @@ $('#my-alert').bind('closed', function () { </div>{{! /example }} <pre class="prettyprint linenums"> <div class="btn-group" data-toggle="buttons-checkbox"> - <button type="button" class="btn">Left</button> - <button type="button" class="btn">Middle</button> - <button type="button" class="btn">Right</button> + <button type="button" class="btn btn-primary">Left</button> + <button type="button" class="btn btn-primary">Middle</button> + <button type="button" class="btn btn-primary">Right</button> </div> </pre> @@ -1097,9 +1097,9 @@ $('#my-alert').bind('closed', function () { </div>{{! /example }} <pre class="prettyprint linenums"> <div class="btn-group" data-toggle="buttons-radio"> - <button type="button" class="btn">Left</button> - <button type="button" class="btn">Middle</button> - <button type="button" class="btn">Right</button> + <button type="button" class="btn btn-primary">Left</button> + <button type="button" class="btn btn-primary">Middle</button> + <button type="button" class="btn btn-primary">Right</button> </div> </pre> |
