$animateCss used on a directive that uses a templateUrl breaks #14074
Description
$animateCss ends up operating on an element that does not end up in the view after the directive is rendered.
As you can see in this plunker if you uncomment the template (and comment the templateUrl) the element is correctly styled and appears in the view. However when the directive is using tamplateUrl the element is not styled.
https://plnkr.co/edit/yO1AvvupoveRi3IWevVL?p=preview
This was not the case in 1.4.x, but is a new issue when upgrading to 1.5.
While the directive is using templateUrl you can also check the console and click reveal in elements pane to see that no element is revealed.
This issue means that you can not do any clean up in the done function or any further styling (my issue is I want to scroll the element into view once it is expanded since the element would be too short to scroll into view before. You can also see that '-active' and '-add-active' styles are not removed.