hammerjs / hammer.js

A javascript library for multi-touch gestures :// You can touch this
http://hammerjs.github.io
MIT License
24.12k stars 2.62k forks source link

Safari Cursor Issue #1264

Open matteodem opened 4 years ago

matteodem commented 4 years ago

On Latest Safari if i drag the cursor changes to a text selector instead of grabbing.

How can this be fixed?

matteodem commented 4 years ago

Can this be prioritized or at least have some feedback on what alternatives exist?

chchchchchchch commented 3 years ago

Disabling text selection (https://stackoverflow.com/q/3779534) <div id="#touchthis" unselectable="on" onselectstart="return false;"></div> worked for me.