]> source.dussan.org Git - jquery-ui.git/commitdiff
slider: Removed undocumented noPropagation last arg from values method as per http...
authorRichard Worth <rdworth@gmail.com>
Mon, 12 Oct 2009 11:23:59 +0000 (11:23 +0000)
committerRichard Worth <rdworth@gmail.com>
Mon, 12 Oct 2009 11:23:59 +0000 (11:23 +0000)
ui/jquery.ui.slider.js

index d27d9afab077966311e3387c7410853ad71f51be..14e92f6e3ff6d213eb22e38a68677dd735a3854b 100644 (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) {