I have a ionic list which shows the checked items from another list, but I want to show a message if the list is empty.
The code is:
<ion-item ng-repeat='(place, checked) in localStorage.options' ng-if="checked" class="item item-body">
How would I do the ng-show, as this is not the standard ng-repeat.