Merge pull request #3779 from NativeScript/fix-livesync

FIX: Livesync event not firing for frame
This commit is contained in:
dtopuzov
2017-03-13 11:15:09 +02:00
committed by GitHub

View File

@ -32,7 +32,7 @@ function onLivesync(args: EventData): void {
} }
}); });
} }
application.on("livesync", args => onLivesync); application.on("livesync", onLivesync);
let frameStack: Array<FrameBase> = []; let frameStack: Array<FrameBase> = [];