Testing trying to keep serialization through interface
More variables called through app, reversed to original. keep serialization through interface.
This commit is contained in:
@@ -159,7 +159,7 @@ const ZoomedDial = withStyles(
|
||||
|
||||
}
|
||||
|
||||
onTouchStart() {
|
||||
onTouchStart(e: TouchEvent<SVGSVGElement>) {
|
||||
//must be defined to get onTouchMove
|
||||
}
|
||||
onTouchMove(e: TouchEvent<SVGSVGElement>) {
|
||||
@@ -377,7 +377,8 @@ const ZoomedDial = withStyles(
|
||||
}
|
||||
|
||||
|
||||
onBodyPointerDownCapture(e: PointerEvent): any {
|
||||
onBodyPointerDownCapture(e_: any): any {
|
||||
let e = e_ as PointerEvent;
|
||||
if (this.isExtraTouch(e)) {
|
||||
this.captureElement!.setPointerCapture(e.pointerId);
|
||||
this.capturedPointers.push(e.pointerId);
|
||||
|
||||
Reference in New Issue
Block a user