Slider set value ignores animate-option
Hi there,
since jQuery UI 1.7 the "moveTo" method has been gone so i changed my
scripts to "value". But i found out, that there is no animation, if a
value is set.
It's a simple change in the value-method since the _setData-function
already uses a given animate-value:
value: function(newValue) {
if (arguments.length) {
this._setData("value", newValue, this.options.animate);
this._change(null, 0);
}
return this._value();
},
Maybe this should be an optional standard in UI 1.7.2, 'cause why do I
define animate:true if the script don't use it? ;-)
Cheers
Frank