I have a very simple appConfig:
var home = {
name: 'home',
url: '/home/'
};
var homeAccess = {
name: 'home.access',
url: 'access',
views: {
'home': {
templateUrl: 'app/access/partials/webapi.html'
}
}
};
In my index.html I have this code:
<div ui-view="home">home view here</div>
But when I navigate to the home/access all I see is the words "home view here"
Can anyone see what I might be doing wrong for my access page to not show up.