Justin Francos

Results 5 comments of Justin Francos

I'm also noticing that for npm v6, I know how to run a script prior to installation of dependencies, and for npm v7, I don't. I'm not too attached to...

This is what I'm then doing in my own code, to create the effect I'm looking for: ``` ... const handleTouchEnd = () => { setSpringOptions = undefined; removeEventListener("touchend", handleTouchEnd);...

Hi @simeydotme, The desire for changing the effect is wanting it to snap to each value, while a user is sliding it through the different values. With the animation in...

> (and in fact, you should probably [consider using these events](https://github.com/simeydotme/svelte-range-slider-pips#slider-events-dispatched) instead!) That would be nice, except that those custom events don't reveal what the underlying event is, so I...

Also fwiw, I've updated my code to ``` const handleTouchEnd = () => { setSpringOptions = undefined; }; const handleTouchMove = () => { setSpringOptions = { hard: true };...