I have a directive with placeholders in the template ( {{ }} ).. And I need to fire a function after the placeholders are evaluated.. Is there any way of doing it?
Thanks
Did it like this:
scope.$watch('binded_var', function(){
// Do stuff here
});