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
Same question...
EDIT : i think it's a question of coordinates captured on touch : if i put the canvas div "up" on the body (by hidding previous divs in the api exemple page), it works...
I know the issue is old but maybe this will help you. Had the same issue with pencils on Windows Tablets.
It seems to be an issue with fabric. You need to add one check in fabric.1.7.22.min.js for isTouchSupported - navigator.maxTouchPoints > 1
fabric.isTouchSupported="ontouchstart" in fabric.document.documentElement||navigator.maxTouchPoints>1;
Remember to save without formatting so the minified file stays minified.
This helped us in our app, hopefully it will work for you as well ;)
Using the API example, it doesn't allow the pen from a touch device to draw, only a mouse. Am I missing a config setting or is it designed this way
The text was updated successfully, but these errors were encountered: