mouseUp
fires on releasing the left mouse button over the slider thumb
mouseUp: (event: Event) => void;
Parameters:
event: Event
- the native event object
Example
slider.events.on("mouseUp", function(e){
// your code here
});
Related sample: Slider. Events