aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEric Baer <[email protected]>2013-06-12 12:51:10 -0600
committerEric Baer <[email protected]>2013-06-12 12:51:10 -0600
commit7f8703ef86ee770051e38cc826e63549709366c3 (patch)
tree2eb29197ed0dcad1c0dde88306de2c5ac47f811b /docs
parent45c5b4e45c1d6479801dc205e13b350e334ebcd0 (diff)
downloadbootstrap-7f8703ef86ee770051e38cc826e63549709366c3.tar.xz
bootstrap-7f8703ef86ee770051e38cc826e63549709366c3.zip
Docs Customize toggle button used incorrect selectors
Diffstat (limited to 'docs')
-rw-r--r--docs/assets/js/application.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/assets/js/application.js b/docs/assets/js/application.js
index 30a7c0d6e..a1df067cf 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('')
})