You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
Problem
An input range slide is bound to a signal, such as the selected year in the Gapminder example. When dragging the slider a series of signal events are fired. In case of provenance tracking that would result in dozens of nodes. What we need to track is only the final position of the slider.
Current solution
Directly grabbing the mouseup and touchend listener from the HTML input element.
Feature request
A more general solution would be better to not rely on the input element listener.
The text was updated successfully, but these errors were encountered:
Problem
An input range slide is bound to a signal, such as the selected year in the Gapminder example. When dragging the slider a series of signal events are fired. In case of provenance tracking that would result in dozens of nodes. What we need to track is only the final position of the slider.
Current solution
Directly grabbing the
mouseup
andtouchend
listener from the HTML input element.Feature request
A more general solution would be better to not rely on the input element listener.
The text was updated successfully, but these errors were encountered: