I'm making an app that uses a lot of events, and I ended up with more than 6 event listeners in one root element in a directive. Is that OK? Should I use ng-events every time when possible, when is OK to use element.on?
I have to admit that is much cleaner to see the events that affect each element directly on the views, but I don't know if it's right, it feels kind of dirty to mix so many functions in the views.