slider: changed order of fired callbacks in moveTo method (fixes #3465)

This commit is contained in:
Paul Bakaus 2008-10-20 07:43:42 +00:00
parent 829ce5f399
commit c6300693c4

View File

@ -435,9 +435,9 @@ $.widget("ui.slider", {
if (!noPropagation) {
this._propagate('start', null);
this._propagate("slide", null);
this._propagate('stop', null);
this._propagate('change', null);
this._propagate("slide", null);
}
}
});