So…I have logic in place to show a divider whenever the date changes. I don’t want the div with the date on it to have an href…so i placed it on the div with the event information. But, for some reason the href does not seem to work…Any suggestions on how to get this to work?
<ion-item ng-class="item.isDivider? 'item-divider':''" ng-repeat="item in events.events | groupByDay" class="item-text-wrap">
<div ng-hide="item.isDivider" href="#/app/events/{{item.id}}">
<h2>{{ item.summary }}</h2>
<p><strong ng-hide="item.start.date">{{ item.start.dateTime | date:'h:mm' }}-{{item.end.dateTime | date:'h:mm a'}}</strong></p>
<p>{{ item.location }}</p>
</div>
<div class="item-divider" ng-show="item.isDivider" ng-bind="item.divider"></div>
</ion-item>