We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7e7b8e commit 29e47ffCopy full SHA for 29e47ff
js/src/range-slider.js
@@ -162,6 +162,9 @@ class RangeSlider extends BaseComponent {
162
const clickValue = this._calculateClickValue(event)
163
this._dragIndex = this._getNearestValueIndex(clickValue)
164
this._updateNearestValue(clickValue)
165
+
166
+ EventHandler.trigger(this._element, EVENT_CHANGE, { value: this._currentValue })
167
+ EventHandler.trigger(this._element, EVENT_INPUT, { value: this._currentValue })
168
})
169
170
EventHandler.on(document.documentElement, EVENT_MOUSEUP, () => {
0 commit comments