diff options
| author | Andreas Jendrzey <[email protected]> | 2013-08-25 10:36:53 +0200 |
|---|---|---|
| committer | Andreas Jendrzey <[email protected]> | 2013-08-25 10:36:53 +0200 |
| commit | 79efeec874eda0042b4da1520b418005776466c2 (patch) | |
| tree | a2b7a400899d926bade7b1ff4a4a42e7216ab2a2 /javascript.html | |
| parent | 4c2b15d6f5a00490b0d3e34771550702be669f4f (diff) | |
| download | bootstrap-79efeec874eda0042b4da1520b418005776466c2.tar.xz bootstrap-79efeec874eda0042b4da1520b418005776466c2.zip | |
correct enable selector for button usage
following the given examples the correct selector to enable the buttons with javascript is ".btn-group".
Diffstat (limited to 'javascript.html')
| -rw-r--r-- | javascript.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript.html b/javascript.html index 6a0807952..ee3b4d7b0 100644 --- a/javascript.html +++ b/javascript.html @@ -1358,7 +1358,7 @@ $('#my-alert').bind('closed.bs.alert', function () { <h2 id="buttons-usage">Usage</h2> <p>Enable buttons via JavaScript:</p> {% highlight js %} -$('.nav-tabs').button() +$('.btn-group').button() {% endhighlight %} <h3>Markup</h3> |
