This is for a 'subset' view off of my main view where I have a tab bar (Map, Market and Charts). When clicking them, they are properly output in this tag via UiSref.
<div ui-view name="inception2"></div>
The 3 views are defined in my routes file as posted below.
How can I default the view in uiViewName to tsView2? Currently I need to click in order to route. Again I have a router file set up that does have abstract states and all - this is only for a simple tab exercise in the existing project. Thanks!
.state('tsView1', {
views: {
'inception2': {
templateUrl: 'client/templates/tsVview1.html'
}
}
})
.state('tsView2', {
views: {
'inception2': {
templateUrl: 'client/templates/tsView2.html'
}
}
})
.state('tsView3', {
views: {
'inception2': {
templateUrl: 'client/templates/tsView3'
}
}
})