From: Eric Baer Date: Wed, 12 Jun 2013 18:51:10 +0000 (-0600) Subject: Docs Customize toggle button used incorrect selectors X-Git-Tag: v3.0.0-rc1~287^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f8703ef86ee770051e38cc826e63549709366c3;p=thirdparty%2Fbootstrap.git Docs Customize toggle button used incorrect selectors --- diff --git a/docs/assets/js/application.js b/docs/assets/js/application.js index 30a7c0d6eb..a1df067cf8 100644 --- a/docs/assets/js/application.js +++ b/docs/assets/js/application.js @@ -71,10 +71,10 @@ // javascript build logic var inputsComponent = $("#less input") , inputsPlugin = $("#plugins input") - , inputsVariables = $("#variables input") + , inputsVariables = $("#less-variables input") // toggle all plugin checkboxes - $('#components .toggle').on('click', function (e) { + $('#less .toggle').on('click', function (e) { e.preventDefault() inputsComponent.prop('checked', !inputsComponent.is(':checked')) }) @@ -84,7 +84,7 @@ inputsPlugin.prop('checked', !inputsPlugin.is(':checked')) }) - $('#variables .toggle').on('click', function (e) { + $('#less-variables .toggle').on('click', function (e) { e.preventDefault() inputsVariables.val('') })