Arthur Roussel

Results 3 comments of Arthur Roussel

Ok sorry I made the moveable() function to always return false and it solves the problem.

Hey. It's been a while but I think you can change line 110 to return false; and it will do the trick but you'll lose mobile support as I understand...

I had to use `pointerdown` to make it work: ``` item.addEventListener('pointerdown', (e) => { e.preventDefault() e.stopImmediatePropagation() }) ```