My question is basically on handling directive event listeners.
I have tiles in my project list screen and each tile will have let's say 6-7 click handlers.
I am creating tile as a directive. Also my project list screen can have n no. of tiles.
My question is whether it's good to have each tile event listeners in directive or controller? Because if i keep event listeners in my directive then let's assume i have 50 tiles in a page then 50*6=300 listeners will be there for that page. Kindly explain me.