Skip to content

Instantly share code, notes, and snippets.

@simpluslabs
Created November 13, 2018 05:27
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/9ee312259d341150b3717ce42c41c65f to your computer and use it in GitHub Desktop.
Save simpluslabs/9ee312259d341150b3717ce42c41c65f to your computer and use it in GitHub Desktop.
({
render : function(component, helper) {
var ret = this.superRender();
console.log('render ChildComp2');
return ret;
},
rerender : function(component, helper) {
var ret = this.superRerender();
console.log('rerender ChildComp2');
return ret;
},
afterRender : function(component, helper){
this.superAfterRender();
console.log('afterRender ChildComp2');
// do custom rerendering here
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment