I have a simple directive where the template uses ng-repeat inside it. I need to run some code to instantiate a jquery component against some of the elements created by the
I think this is because of the angular bug.You can see this here
One workaround is to remove the template url and use the template in the directive itself or use $templateCache.get('/app/partials/my_directive.html')
This worked for me :)