I have been studying ui-router for angular 1.4 at 'https://github.com/angular-ui/ui-router/wiki/Nested-States-%26-Nested-Views', but I can't find an example that showcases having a child within a child... I mean without the ui-router.stateHelper
, as I would much rather use the dot notation for this. So for example.. is the following possible?
$stateProvider
.state('index', {})
.state('index.contacts', {})
.state('index.contacts.search', {})
Hints would be appreciated.