Here is an example of the code snippet :
<div ng-repeat="u in users">
<!--An active URL will always be received -->
<div ng-if="u.imageUrl"> <!--Check if the provided URL is active-->
<!--Content only visible if image url is live and active -->
</div>
<div>
<!--Do other operations here-->
</div>
</div>
For instance:
http://www.pacinno.eu/wp-content/uploads/2014/05/placeholder1.png
is an active URL, while http://www.pacinno.eu/wp-content/uploads/2014/05/placeholder11.png
is not.
Also, keep in mind that the users
object may contain multiple records as more people sign in.