routes events from one object to another
map | object | the hash of event-object relations |
//as result, button's event will fire also for the list component
button.mapEvent({
onItemClick:list // where list - some other component
});
Back to top