Skip to content

Instantly share code, notes, and snippets.

@simpluslabs
Created November 13, 2018 05:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simpluslabs/23f564ad613deea5f127ce6a0f0a3877 to your computer and use it in GitHub Desktop.
Save simpluslabs/23f564ad613deea5f127ce6a0f0a3877 to your computer and use it in GitHub Desktop.
({
doInit : function(component, event, helper) {
console.log('----init SubChild1---');
},
handleClick : function(component, event, helper)
{
console.log('button clicked in SubChild1');
var noOfTimesClicked = component.get("v.noOfTimesClicked");
component.set("v.noOfTimesClicked",noOfTimesClicked+1);
},
handleChange : function(component, event, helper)
{
console.log('inside Change of SubChild1');
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment