r3363 committed - slider: Removed undocumented noPropagation last arg from values method...

r3363 committed - slider: Removed undocumented noPropagation last arg from values method...


Revision: 3363
Author: rdworth
Date: Mon Oct 12 04:23:59 2009
Log: slider: Removed undocumented noPropagation last arg from values method
as per
http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/a350889a377c59b8
http://code.google.com/p/jquery-ui/source/detail?r=3363
Modified:
/trunk/ui/jquery.ui.slider.js
=======================================
--- /trunk/ui/jquery.ui.slider.js    Mon Oct 12 04:06:57 2009
+++ /trunk/ui/jquery.ui.slider.js    Mon Oct 12 04:23:59 2009
@@ -421,12 +421,12 @@
    },
-    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) {