@syncfusion/ej2-image-editor 22.2.10 → 22.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5451,6 +5451,9 @@ class FreehandDrawing {
5451
5451
  if (e.type === 'mouseup') {
5452
5452
  this.processPoint(e.clientX - rect.left, e.clientY - rect.top, true, context);
5453
5453
  }
5454
+ else if (e.type === 'touchend' && e.changedTouches) {
5455
+ this.processPoint(e.changedTouches[0].clientX - rect.left, e.changedTouches[0].clientY - rect.top, true, context);
5456
+ }
5454
5457
  else {
5455
5458
  if (!this.isFreehandPointMoved) {
5456
5459
  this.processPoint(this.freehandDownPoint.x - rect.left, this.freehandDownPoint.y - rect.top, true, context);