I'm new to Angular and I want to hide some specific HTMl in case of an Object is empty, but how can I achieve that?
so far I have:
$scope.links = data.links;
and then:
<div ng-if="links">
/// some more html
</div>
but that doesnt work. Any help is appreciated...
data.links?console.log($scope.links)returnsObject {}