From 789e2e023544d2a424d04a0a3f147294414db31b Mon Sep 17 00:00:00 2001 From: vakrilov Date: Mon, 13 Mar 2017 10:49:09 +0200 Subject: [PATCH] FIX: Livesync event not firing for frame --- tns-core-modules/ui/frame/frame-common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tns-core-modules/ui/frame/frame-common.ts b/tns-core-modules/ui/frame/frame-common.ts index f82d91e5f..29110ceeb 100644 --- a/tns-core-modules/ui/frame/frame-common.ts +++ b/tns-core-modules/ui/frame/frame-common.ts @@ -32,7 +32,7 @@ function onLivesync(args: EventData): void { } }); } -application.on("livesync", args => onLivesync); +application.on("livesync", onLivesync); let frameStack: Array = [];