aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/js/customizer.js
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2014-03-05 08:42:50 +0200
committerXhmikosR <[email protected]>2014-03-05 08:42:50 +0200
commitd7dc8a7bd3cecffb437c8491dbe93665d33bbb62 (patch)
tree6c384b7559f621d186de4c1b60f3d80cb9cb3e73 /docs/assets/js/customizer.js
parent10eb167e35f9047aa6b3c0e420467161a1bc4d2b (diff)
parent22d004e332700e4867691896b9f6db954c2d7c12 (diff)
downloadbootstrap-d7dc8a7bd3cecffb437c8491dbe93665d33bbb62.tar.xz
bootstrap-d7dc8a7bd3cecffb437c8491dbe93665d33bbb62.zip
Merge pull request #12853 from twbs/jscs
Switch to JSCS
Diffstat (limited to 'docs/assets/js/customizer.js')
-rw-r--r--docs/assets/js/customizer.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/assets/js/customizer.js b/docs/assets/js/customizer.js
index c7385534c..a0e4a28d1 100644
--- a/docs/assets/js/customizer.js
+++ b/docs/assets/js/customizer.js
@@ -72,9 +72,9 @@ window.onload = function () { // wait for load in a dumb way because B-0
var vars = {}
$('#less-variables-section input')
- .each(function () {
- $(this).val() && (vars[$(this).prev().text()] = $(this).val())
- })
+ .each(function () {
+ $(this).val() && (vars[$(this).prev().text()] = $(this).val())
+ })
var data = {
vars: vars,
@@ -238,9 +238,9 @@ window.onload = function () { // wait for load in a dumb way because B-0
var vars = {}
$('#less-variables-section input')
- .each(function () {
- $(this).val() && (vars[$(this).prev().text()] = $(this).val())
- })
+ .each(function () {
+ $(this).val() && (vars[$(this).prev().text()] = $(this).val())
+ })
var bsLessSource = generateLESS('bootstrap.less', lessFileIncludes, vars)
var themeLessSource = generateLESS('theme.less', lessFileIncludes, vars)