Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jendrzey <andy@jendrzey.de>2013-08-25 12:36:53 +0400
committerAndreas Jendrzey <andy@jendrzey.de>2013-08-25 12:36:53 +0400
commit79efeec874eda0042b4da1520b418005776466c2 (patch)
treea2b7a400899d926bade7b1ff4a4a42e7216ab2a2 /javascript.html
parent4c2b15d6f5a00490b0d3e34771550702be669f4f (diff)
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.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript.html b/javascript.html
index 6a0807952e..ee3b4d7b03 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>