From: Andreas Jendrzey Date: Sun, 25 Aug 2013 08:36:53 +0000 (+0200) Subject: correct enable selector for button usage X-Git-Tag: v3.0.1~114^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79efeec874eda0042b4da1520b418005776466c2;p=thirdparty%2Fbootstrap.git correct enable selector for button usage following the given examples the correct selector to enable the buttons with javascript is ".btn-group". --- 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 () {

Usage

Enable buttons via JavaScript:

{% highlight js %} -$('.nav-tabs').button() +$('.btn-group').button() {% endhighlight %}

Markup