r808 - trunk/ui
r808 - trunk/ui
Author: paul.bakaus
Date: Mon Oct 20 00:43:42 2008
New Revision: 808
Modified:
trunk/ui/ui.slider.js
Log:
slider: changed order of fired callbacks in moveTo method (fixes #3465)
Modified: trunk/ui/ui.slider.js
==============================================================================
--- trunk/ui/ui.slider.js (original)
+++ trunk/ui/ui.slider.js Mon Oct 20 00:43:42 2008
@@ -435,9 +435,9 @@
if (!noPropagation) {
this._propagate('start', null);
+ this._propagate("slide", null);
this._propagate('stop', null);
this._propagate('change', null);
- this._propagate("slide", null);
}
}
});