I’ve a sidemenu with tabs app. It’s essentially a clone of the system I use for another app that has no problems.
The layout
3 tabs with a sidemenu. The tabs have the content, the sidemenu has the about, support, instructions, etc. And a close button as well as a “back to content” button.
The “back to content” button links to the tab view like this:
<ion-item nav-clear menu-close ui-sref="app.tabs">
<i class="icon ion-document-text"></i>
BACK TO APP
</ion-item>
and in app.js I have:
.state('app.tabs', {
url: "/tabs",
views: {
'menuContent': {
templateUrl: "templates/tabs.html"
}
}
})
This is identical to another app I have.
In that app going back to the tabs changes the title to that of the tabs view:
<ion-view view-title="MyAppName">
<ion-tabs class="tabs-icon-top tabs-color-calm">
In this new one the title remains the same as the last side menu section navigated to.
This then also breaks the navigation history when using the tabs.
Why would this happen?