My content use ng-cloak directive and i would like to get a element height with innerHeight() in a directive.
But, when the innerHeight() is use the element is hide by ng-cloak so the result is always 0.
I tried
link: function postLink(scope, element, attrs) {}
Or
$timeout(function(){}
but same result.
Anyone know a function or event for this ?
Thanks.