Event Object
grimmdev opened this issue ยท 2 comments
I'm essentially curious how to get all the keys and values of the event object. I tried a few javascript methods which didn't workout and the utils.foreach. Is there a way to loop through the event object to get the keys and values available?
var evtName, evtHandlerFn;
for (evtName in events){
console.log( evtName );
evtHandlerFn = events[evtName];
}