aboutsummaryrefslogtreecommitdiffstats
path: root/ui/slider.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/slider.js')
-rw-r--r--ui/slider.js2
1 files changed, 1 insertions, 1 deletions
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 ] );
}