aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-07-18 13:59:37 -0700
committerChris Rebert <[email protected]>2014-07-18 13:59:37 -0700
commitfc19cad60810684d6669ac55eaece2d96500f82a (patch)
treebfb5603a17a283ec26ebc3288bb33ecd2984e1c4
parent866ffc4f37def3d505a10a161720dc0ef9420dea (diff)
downloadbootstrap-fc19cad60810684d6669ac55eaece2d96500f82a.tar.xz
bootstrap-fc19cad60810684d6669ac55eaece2d96500f82a.zip
Use autocomplete="off" in buttons plugin docs examples
Refs #13875.
-rw-r--r--docs/_includes/js/buttons.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/_includes/js/buttons.html b/docs/_includes/js/buttons.html
index ee5b3d71d..6d812e70a 100644
--- a/docs/_includes/js/buttons.html
+++ b/docs/_includes/js/buttons.html
@@ -44,26 +44,26 @@
<div class="bs-example" style="padding-bottom: 24px;">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
- <input type="checkbox" checked> Option 1 (pre-checked)
+ <input type="checkbox" autocomplete="off" checked> Option 1 (pre-checked)
</label>
<label class="btn btn-primary">
- <input type="checkbox"> Option 2
+ <input type="checkbox" autocomplete="off"> Option 2
</label>
<label class="btn btn-primary">
- <input type="checkbox"> Option 3
+ <input type="checkbox" autocomplete="off"> Option 3
</label>
</div>
</div><!-- /example -->
{% highlight html %}
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
- <input type="checkbox" checked> Option 1 (pre-checked)
+ <input type="checkbox" autocomplete="off" checked> Option 1 (pre-checked)
</label>
<label class="btn btn-primary">
- <input type="checkbox"> Option 2
+ <input type="checkbox" autocomplete="off"> Option 2
</label>
<label class="btn btn-primary">
- <input type="checkbox"> Option 3
+ <input type="checkbox" autocomplete="off"> Option 3
</label>
</div>
{% endhighlight %}
@@ -77,26 +77,26 @@
<div class="bs-example" style="padding-bottom: 24px;">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
- <input type="radio" name="options" id="option1" checked> Option 1 (preselected)
+ <input type="radio" name="options" id="option1" autocomplete="off" checked> Option 1 (preselected)
</label>
<label class="btn btn-primary">
- <input type="radio" name="options" id="option2"> Option 2
+ <input type="radio" name="options" id="option2" autocomplete="off"> Option 2
</label>
<label class="btn btn-primary">
- <input type="radio" name="options" id="option3"> Option 3
+ <input type="radio" name="options" id="option3" autocomplete="off"> Option 3
</label>
</div>
</div><!-- /example -->
{% highlight html %}
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
- <input type="radio" name="options" id="option1" checked> Option 1 (preselected)
+ <input type="radio" name="options" id="option1" autocomplete="off" checked> Option 1 (preselected)
</label>
<label class="btn btn-primary">
- <input type="radio" name="options" id="option2"> Option 2
+ <input type="radio" name="options" id="option2" autocomplete="off"> Option 2
</label>
<label class="btn btn-primary">
- <input type="radio" name="options" id="option3"> Option 3
+ <input type="radio" name="options" id="option3" autocomplete="off"> Option 3
</label>
</div>
{% endhighlight %}