aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-10-12 11:23:59 +0000
committerRichard Worth <rdworth@gmail.com>2009-10-12 11:23:59 +0000
commit2c5d327debfdc2696267f7d4dba5c0a4335bc165 (patch)
treedf18d82e67a1729eee8a2cf3b7b1d98f6129f723 /ui
parent3af7fa81f4a179acb4e1e5c597f1f8d7d08c0b63 (diff)
downloadjquery-ui-2c5d327debfdc2696267f7d4dba5c0a4335bc165.tar.gz
jquery-ui-2c5d327debfdc2696267f7d4dba5c0a4335bc165.zip
slider: Removed undocumented noPropagation last arg from values method as per http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/a350889a377c59b8
Diffstat (limited to 'ui')
-rw-r--r--ui/jquery.ui.slider.js4
1 files changed, 2 insertions, 2 deletions
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) {