From c6300693c400a9aa82ec71f7dbc31a3e7cf87901 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Mon, 20 Oct 2008 07:43:42 +0000 Subject: [PATCH] slider: changed order of fired callbacks in moveTo method (fixes #3465) --- ui/ui.slider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ui.slider.js b/ui/ui.slider.js index 247d72452..6158ce113 100644 --- a/ui/ui.slider.js +++ b/ui/ui.slider.js @@ -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); } } });