@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.
@@ -5459,6 +5459,9 @@ var FreehandDrawing = /** @__PURE__ @class */ (function () {
5459
5459
  if (e.type === 'mouseup') {
5460
5460
  this.processPoint(e.clientX - rect.left, e.clientY - rect.top, true, context);
5461
5461
  }
5462
+ else if (e.type === 'touchend' && e.changedTouches) {
5463
+ this.processPoint(e.changedTouches[0].clientX - rect.left, e.changedTouches[0].clientY - rect.top, true, context);
5464
+ }
5462
5465
  else {
5463
5466
  if (!this.isFreehandPointMoved) {
5464
5467
  this.processPoint(this.freehandDownPoint.x - rect.left, this.freehandDownPoint.y - rect.top, true, context);