From a05a11e5dc9fcf86111b4baf61ac6a8e08946d30 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 21 Dec 2013 22:59:40 +0200 Subject: Get rid of JSHint's `laxcomma` option now that the comma is used on the right side. --- docs-assets/js/application.js | 4 ++-- docs-assets/js/customizer.js | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'docs-assets') diff --git a/docs-assets/js/application.js b/docs-assets/js/application.js index 3fd599eb7..78eed1ae9 100644 --- a/docs-assets/js/application.js +++ b/docs-assets/js/application.js @@ -59,8 +59,8 @@ var navOuterHeight = $('.bs-docs-nav').height() return (this.top = offsetTop - navOuterHeight - sideBarMargin) - } - , bottom: function () { + }, + bottom: function () { return (this.bottom = $('.bs-footer').outerHeight(true)) } } diff --git a/docs-assets/js/customizer.js b/docs-assets/js/customizer.js index cd0f93319..0e32f8090 100644 --- a/docs-assets/js/customizer.js +++ b/docs-assets/js/customizer.js @@ -227,9 +227,9 @@ window.onload = function () { // wait for load in a dumb way because B-0 try { var parser = new less.Parser({ - paths: ['variables.less', 'mixins.less'] - , optimization: 0 - , filename: 'bootstrap.css' + paths: ['variables.less', 'mixins.less'], + optimization: 0, + filename: 'bootstrap.css' }).parse(css, function (err, tree) { if (err) { return showError('Ruh roh! Could not parse less files.', err) -- cgit v1.2.3