Can’t for the life of me figure out why the back button doesn’t show up when I navigate to an <ion-view>
app base state template:
<ion-side-menus>
<ion-side-menu side="left">
<div class="list">
<!-- ... -->
</div>
</ion-side-menu>
<ion-side-menu-content state>
<ion-nav-bar class="bar-positive">
<ion-nav-back-button></ion-nav-back-button>
</ion-nav-bar>
<!-- Content -->
<ion-nav-view></ion-nav-view>
</ion-side-menu-content>
</ion-side-menus>
Then, I have two simple views, one that gets loaded on app start and one that is linked from it with an ui-sref.
Default app.entries state template:
<ion-view title="Entries">
<a ui-sref="app.entryDetails({ entryId: entry._id })" ng-repeat="entry in entryList"> {{entry.title}} </a>
</ion-view>
app.entryDetails state template:
<ion-view title="{{entry.title}}">
Testing.
</ion-view>
And in the end, THIS is what happens. Any ideas on what’s going on here?