aboutsummaryrefslogtreecommitdiff
path: root/docs/javascript.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-07-18 01:25:28 -0700
committerMark Otto <[email protected]>2013-07-18 01:25:28 -0700
commit6e04925328c74dde8d98676b5148d646ea055e9b (patch)
treeafe6d9aef724184db7c893b6d324519b729d3fc9 /docs/javascript.html
parente72b524d416a5b3352274e0d748ffd77ceecf100 (diff)
parent6ec8a1e44f6b58ed57d015916a4fe39bfb0e2340 (diff)
downloadbootstrap-6e04925328c74dde8d98676b5148d646ea055e9b.tar.xz
bootstrap-6e04925328c74dde8d98676b5148d646ea055e9b.zip
Merge branch '3.0.0-wip' of github.com:twitter/bootstrap into 3.0.0-wip
Diffstat (limited to 'docs/javascript.html')
-rw-r--r--docs/javascript.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/javascript.html b/docs/javascript.html
index 089aa60ec..94946a351 100644
--- a/docs/javascript.html
+++ b/docs/javascript.html
@@ -1168,9 +1168,9 @@ $('#my-alert').bind('closed.bs.alert', function () {
{% endhighlight %}
<h4>Checkbox</h4>
- <p>Add <code>data-toggle="buttons-checkbox"</code> for checkbox style toggling on btn-group.</p>
+ <p>Add <code>data-toggle="buttons"</code> to a group of checkboxes for checkbox style toggling on btn-group.</p>
<div class="bs-example" style="padding-bottom: 24px;">
- <div class="btn-group" data-toggle="buttons-checkbox">
+ <div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="checkbox"> Option 1
</label>
@@ -1183,7 +1183,7 @@ $('#my-alert').bind('closed.bs.alert', function () {
</div>
</div><!-- /example -->
{% highlight html %}
-<div class="btn-group" data-toggle="buttons-checkbox">
+<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="checkbox"> Option 1
</label>
@@ -1197,9 +1197,9 @@ $('#my-alert').bind('closed.bs.alert', function () {
{% endhighlight %}
<h4>Radio</h4>
- <p>Add <code>data-toggle="buttons-radio"</code> for radio style toggling on btn-group.</p>
+ <p>Add <code>data-toggle="buttons"</code> to a group of radio inputs for radio style toggling on btn-group.</p>
<div class="bs-example" style="padding-bottom: 24px;">
- <div class="btn-group" data-toggle="buttons-radio">
+ <div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="options" id="option1"> Option 1
</label>
@@ -1212,7 +1212,7 @@ $('#my-alert').bind('closed.bs.alert', function () {
</div>
</div><!-- /example -->
{% highlight html %}
-<div class="btn-group" data-toggle="buttons-radio">
+<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="options" id="option1"> Option 1
</label>