mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
slider: changed order of fired callbacks in moveTo method (fixes #3465)
This commit is contained in:
parent
829ce5f399
commit
c6300693c4
@ -435,9 +435,9 @@ $.widget("ui.slider", {
|
|||||||
|
|
||||||
if (!noPropagation) {
|
if (!noPropagation) {
|
||||||
this._propagate('start', null);
|
this._propagate('start', null);
|
||||||
|
this._propagate("slide", null);
|
||||||
this._propagate('stop', null);
|
this._propagate('stop', null);
|
||||||
this._propagate('change', null);
|
this._propagate('change', null);
|
||||||
this._propagate("slide", null);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user