From 143309532c625c19f000bdf2a542e17451b36983 Mon Sep 17 00:00:00 2001 From: Matthew R Hanlon Date: Fri, 19 Oct 2012 16:03:58 -0500 Subject: [PATCH] fix jquery-ui-sliderAccess so that slider "stop" is called and bound functions (onSelect) are called in datetimepicker --- jquery-ui-sliderAccess.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jquery-ui-sliderAccess.js b/jquery-ui-sliderAccess.js index be514d1..7bc2260 100644 --- a/jquery-ui-sliderAccess.js +++ b/jquery-ui-sliderAccess.js @@ -60,6 +60,8 @@ $t.slider('value', newval); $t.slider("option", "slide").call($t, null, { value: newval }); + $t.slider("option", "stop").call($t, null, { value: newval }); + }); }); @@ -83,4 +85,4 @@ } }); -})(jQuery); \ No newline at end of file +})(jQuery);