I worked with angular -ui-router and tried to go to the child of one of my abstract states from another child of the same abstract. this diagram shows the Idea a little better:

So where "R" means module and "blue 1" is my abstract state with
<ui-view/>
I have a green "1" load automatically. I'm having problems navigating to the red β2β from ui-sref in green β1β. is there something i have to do, in particular, to jump into the blue β1β or abstract state and then load the state of βred2β?
:: ::
ui-sref , statechange.
app.js:
var app = angular.module( 'app', [ 'ui.router' ] );
app.config( function( $stateProvider, $urlRouterProvider ) {
$stateProvider
.state( 'Papers', {
url: "/Papers",
abstract: true,
template: '<ui-view />'
})
.state( 'Papers.home', {
url: '',
templateUrl: 'templates/views/connect/Papers.home.html',
controller: 'whitePapersController'
})
.state( 'Papers.paper1', {
url: '/paper1',
templateUrl: 'templates/views/connect/Papers.paper1.html',
controller: 'PapersController'
})
.state( 'Papers.paper2', {
url: '/paper2',
templateUrl: 'templates/views/connect/Papers.paper2.html',
controller: 'PapersController'
});
}
paper.home.html:
<h3>
<a ui-sref="Papers.paper1">
click me for paper 1
</a>
</h3>
<h3>
<a ui-sref="Papers.paper2">
click me for paper 2
</a>
</h3>
- , , ?