I don’t know why I find this so difficult to explain. But essentially I need the app to, after a user logins to take him to the Site Information page. I’m using $state.go(‘tab.siteinfo’), and that works. But I loose the ability too use the More tab.
I used the tabs template as a starting point, here are the states I have, I erased all of those that I didn’t think are necessary but I can add them no problem :
.state('tab', {
url: '/tab',
abstract: true,
templateUrl: 'templates/tabs.html'
})
.state('tab.more', {
url: '/more',
views: {
'tab-more': {
templateUrl: 'templates/tab-more.html',
controller: 'MoreCtrl as More'
}
}
})
.state('tab.siteinfo', {
url: '/siteinfo',
views: {
'tab-more': {
templateUrl: 'templates/tab-siteinfo.html',
controller: 'SiteInfoCtrl as SiteInfo'
}
}
})
Hope this is enough, will post more if needed.
Thanks.