diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-03-28 17:34:04 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-03-28 17:34:57 -0400 |
commit | 8310d185b3a5fc8f433f0736a22298e84ac73f7d (patch) | |
tree | 3d7e3e4cf5263a9ddc6514374aa8eb6b8574894d /ui/jquery.ui.slider.js | |
parent | eb3d95543870447d1194f6e9e7c43c6d2637a35f (diff) | |
download | jquery-ui-8310d185b3a5fc8f433f0736a22298e84ac73f7d.tar.gz jquery-ui-8310d185b3a5fc8f433f0736a22298e84ac73f7d.zip |
Slider: Properly handle value and value methods as setters. Fixes #4881 - Slider: value and values methods as setters aren't chainable.
(cherry picked from commit 2197c61f1f91a7b5046fb994d370f38ded602ee6)
Diffstat (limited to 'ui/jquery.ui.slider.js')
-rw-r--r-- | ui/jquery.ui.slider.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/jquery.ui.slider.js b/ui/jquery.ui.slider.js index f6bc57025..a32e77966 100644 --- a/ui/jquery.ui.slider.js +++ b/ui/jquery.ui.slider.js @@ -466,6 +466,7 @@ $.widget( "ui.slider", $.ui.mouse, { this.options.value = this._trimAlignValue( newValue ); this._refreshValue(); this._change( null, 0 ); + return; } return this._value(); @@ -480,6 +481,7 @@ $.widget( "ui.slider", $.ui.mouse, { this.options.values[ index ] = this._trimAlignValue( newValue ); this._refreshValue(); this._change( null, index ); + return; } if ( arguments.length ) { |