Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <XhmikosR@users.noreply.github.com>2014-03-05 10:42:50 +0400
committerXhmikosR <XhmikosR@users.noreply.github.com>2014-03-05 10:42:50 +0400
commitd7dc8a7bd3cecffb437c8491dbe93665d33bbb62 (patch)
tree6c384b7559f621d186de4c1b60f3d80cb9cb3e73 /docs/assets
parent10eb167e35f9047aa6b3c0e420467161a1bc4d2b (diff)
parent22d004e332700e4867691896b9f6db954c2d7c12 (diff)
Merge pull request #12853 from twbs/jscs
Switch to JSCS
Diffstat (limited to 'docs/assets')
-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 c7385534cd..a0e4a28d19 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)