slider: Removed undocumented noPropagation last arg from values method as per http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/a350889a377c59b8

This commit is contained in:
Richard Worth 2009-10-12 11:23:59 +00:00
parent 3af7fa81f4
commit 2c5d327deb

View File

@ -421,12 +421,12 @@ $.widget("ui.slider", $.extend({}, $.ui.mouse, {
},
values: function(index, newValue, noPropagation) {
values: function(index, newValue) {
if (arguments.length > 1) {
this.options.values[index] = newValue;
this._refreshValue();
if(!noPropagation) this._change(null, index);
this._change(null, index);
}
if (arguments.length) {