From 54004c85d02ba5688549736e0fb8f883c88b668b Mon Sep 17 00:00:00 2001 From: Jörn Zaefferer Date: Wed, 13 Aug 2014 18:29:28 +0200 Subject: Build: Update jscs and fix some code style issues Disables the checks for casing and line length, since those need a lot more effort to address. For variable naming the fix isn't obvious to me. There's way too many lines over 100 chars. --- ui/slider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/slider.js') diff --git a/ui/slider.js b/ui/slider.js index 58b5c0759..74cbcc759 100644 --- a/ui/slider.js +++ b/ui/slider.js @@ -512,7 +512,7 @@ return $.widget( "ui.slider", $.ui.mouse, { // .slice() creates a copy of the array // this copy gets trimmed by min and max and then returned vals = this.options.values.slice(); - for ( i = 0; i < vals.length; i+= 1) { + for ( i = 0; i < vals.length; i += 1) { vals[ i ] = this._trimAlignValue( vals[ i ] ); } -- cgit v1.2.3