jakubfiala / atrament

A small JS library for beautiful drawing and handwriting on the HTML Canvas.
http://fiala.space/atrament/demo
MIT License
1.55k stars 116 forks source link

e.preventDefault() - check whether event is cancellable #40

Closed bencergazda closed 5 years ago

bencergazda commented 5 years ago

This commit prevents browser errors like Ignored attempt to cancel a touchstart event with cancelable=false, for example because scrolling is in progress and cannot be interrupted. by putting e.preventDefault() in an if (e.cancelable) statement.