Hi,
- I have multiple controls
- I start selection hover one control
- I end selection hover another control
If i'm using mouse events it works fine. In mousedown I get the first control and in mouseup I get the second control.
But if i'm using touch events i'm getting only the first control. In touchstart I get the first control (it's correct) but in touchend I was expecting the second control - but get first control again.
I'm using version 4.1.0 with angular 5.2.2 and the relevant code is:
<ng-template ngFor let-item let-i="index" [ngForOf]="locals.Locals">
<svg:g (down)="activate($event, item)" (up)="deactivate($event, item)" class="container small"
Thanks.
Hi,
If i'm using mouse events it works fine. In mousedown I get the first control and in mouseup I get the second control.
But if i'm using touch events i'm getting only the first control. In touchstart I get the first control (it's correct) but in touchend I was expecting the second control - but get first control again.
I'm using version 4.1.0 with angular 5.2.2 and the relevant code is:
Thanks.