Created
August 14, 2019 11:35
-
-
Save NickIliev/564a357c0695a24523336820730002b3 to your computer and use it in GitHub Desktop.
Event propagation (bubbling) in NativeScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function onTap(args: EventData) { | |
console.log(`>>>>>>>>>>> onTap invoked from: ${args.object}`); | |
const view: View = args.object as View; | |
animate(view); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment