From 79efeec874eda0042b4da1520b418005776466c2 Mon Sep 17 00:00:00 2001
From: Andreas Jendrzey <andy@jendrzey.de>
Date: Sun, 25 Aug 2013 10:36:53 +0200
Subject: [PATCH] correct enable selector for button usage

following the given examples the correct selector to enable the buttons with javascript is ".btn-group".
---
 javascript.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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>
-- 
GitLab