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.sourceforge.net>2014-02-19 11:11:05 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2014-02-28 19:30:08 +0400
commit537e10033e055bc060ecbd57a678e6cfcfffed30 (patch)
tree818a23312f7176e068d832921e46194873c2739b /docs/assets
parent299f985e5d453c2a6b1202bbc545d83f84b09360 (diff)
Switch to using JSCS for the indentation check.
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)