0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-17 09:52:29 +01:00

rm docs references to nuked stateful button feature

[skip sauce]
This commit is contained in:
Chris Rebert 2015-08-20 18:47:41 -07:00
parent e3899b4fa8
commit d24a15d2b0

View File

@ -179,18 +179,3 @@ Note that pre-checked buttons require you to manually add the `.active` class to
| Method | Description | | Method | Description |
| --- | --- | | --- | --- |
| `$().button('toggle')` |Toggles push state. Gives the button the appearance that it has been activated. | | `$().button('toggle')` |Toggles push state. Gives the button the appearance that it has been activated. |
| `$().button('reset')` | Resets button state—swaps text to original text. **This method is asynchronous and returns before the resetting has actually completed.** |
| `$().button(string)` | Swaps text to any data defined text state. |
### Custom state example
{% highlight html %}
<button type="button" id="myStateButton" data-complete-text="finished!" class="btn btn-primary" autocomplete="off">
...
</button>
<script>
$('#myStateButton').on('click', function () {
$(this).button('complete') // button text will be "finished!"
})
</script>
{% endhighlight %}