Hey, in your controller try this instead:
'keyup a': function(event){ ... },
'dblclick a': function(event){ ... },
'click a': function(event){ ... },
// and to trigger on the root div:
'mouseover &': function(event) {...}
The event handlers must always have an event name, a space, and a selector. Use "&" as the selector for the root element.
Good luck with Agility!