Is there a way to add (in a nice way, I mean to avoid multiple listener definitions) same event handler to few events? i.e.
element.on('event1 event2 event3').listen(handleEvents);
EDIT:
I mean also generic events like focus
, blur
etc.
Is there a way to add (in a nice way, I mean to avoid multiple listener definitions) same event handler to few events? i.e.
element.on('event1 event2 event3').listen(handleEvents);
EDIT:
I mean also generic events like focus
, blur
etc.