I have implemented the angular ng-hide directive to conceal certain markup when there is no data present:
<li class="header" ng-hide = " todayRecents.length === 0 ">today</li>
At this point, ng-hide simply applies a display value of 'none' to the element display:none
Is it feasible for ng-hide to completely omit rendering the markup instead?