diff options
author | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-12-31 08:22:11 +0000 |
---|---|---|
committer | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-12-31 08:22:11 +0000 |
commit | dbcf65fce9a71b5fc6ac2f0db1d87c0f5574843b (patch) | |
tree | 8e3bd3fc55aa63cc1c17d93cc7ad41e69fca6240 /ui/ui.slider.js | |
parent | b00026f72be720a44200d127f71f7b11c5ce939b (diff) | |
download | jquery-ui-dbcf65fce9a71b5fc6ac2f0db1d87c0f5574843b.tar.gz jquery-ui-dbcf65fce9a71b5fc6ac2f0db1d87c0f5574843b.zip |
Remove trailing spaces
Diffstat (limited to 'ui/ui.slider.js')
-rw-r--r-- | ui/ui.slider.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/ui.slider.js b/ui/ui.slider.js index 213607bac..5e3e28d26 100644 --- a/ui/ui.slider.js +++ b/ui/ui.slider.js @@ -344,7 +344,7 @@ $.widget("ui.slider", $.extend({}, $.ui.mouse, { var orientation = this.options.orientation; if (orientation != 'horizontal' && orientation != 'vertical') orientation = 'horizontal'; - + return orientation; }, @@ -367,7 +367,7 @@ $.widget("ui.slider", $.extend({}, $.ui.mouse, { var val = this.options.values[index]; if (val < this._valueMin()) val = this._valueMin(); if (val > this._valueMax()) val = this._valueMax(); - + return val; } else { return this.options.values; |