From: Richard Worth Date: Mon, 12 Oct 2009 11:23:59 +0000 (+0000) Subject: slider: Removed undocumented noPropagation last arg from values method as per http... X-Git-Tag: 1.8a2~55 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2c5d327debfdc2696267f7d4dba5c0a4335bc165;p=jquery-ui.git slider: Removed undocumented noPropagation last arg from values method as per http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/a350889a377c59b8 --- diff --git a/ui/jquery.ui.slider.js b/ui/jquery.ui.slider.js index d27d9afab..14e92f6e3 100644 --- a/ui/jquery.ui.slider.js +++ b/ui/jquery.ui.slider.js @@ -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) {