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/javascript.html | |
| parent | 8df2811d4981f5b3cc9291ac1c8c7fddb41427c6 (diff) | |
| download | bootstrap-5d1b4206b1ed88e40a1f3029dc9b5dccebe7a110.tar.xz bootstrap-5d1b4206b1ed88e40a1f3029dc9b5dccebe7a110.zip | |
Fixes #5986: single toggle button html examples
Diffstat (limited to 'docs/javascript.html')
| -rw-r--r-- | docs/javascript.html | 14 |
1 files changed, 7 insertions, 7 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> |
