What is the easiest way to stop mouse events propagation in Angular ?
Should I pass special $event
object and call stopPropagation()
myself or there is some other way.
For example in Meteor, I can simply return false
from event handler.
What is the easiest way to stop mouse events propagation in Angular ?
Should I pass special $event
object and call stopPropagation()
myself or there is some other way.
For example in Meteor, I can simply return false
from event handler.