Skip to content

Commit

Permalink
slider: changed order of fired callbacks in moveTo method (fixes #3465)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Bakaus committed Oct 20, 2008
1 parent 829ce5f commit c630069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/ui.slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
});
Expand Down

0 comments on commit c630069

Please sign in to comment.