r3360 committed - slider: fixed two failing unit tests...

r3360 committed - slider: fixed two failing unit tests...


Revision: 3360
Author: rdworth
Date: Mon Oct 12 02:27:23 2009
Log: slider: fixed two failing unit tests
'value method set respects min'
'value method set respects max'
http://code.google.com/p/jquery-ui/source/detail?r=3360
Modified:
/trunk/ui/jquery.ui.slider.js
=======================================
--- /trunk/ui/jquery.ui.slider.js    Sat Sep 19 08:19:42 2009
+++ /trunk/ui/jquery.ui.slider.js    Mon Oct 12 02:27:23 2009
@@ -405,6 +405,8 @@
    value: function(newValue) {
        if (arguments.length) {
+            newValue = newValue >= this.options.min ? newValue : this.options.min;
+            newValue = newValue <= this.options.max ? newValue : this.options.max;
            this._setData("value", newValue);
            this._change(null, 0);
        }