ui-router.stateHelper
ui-router.stateHelper copied to clipboard
A helper module for AngularUI Router, which allows you to define your states as an object tree.
this is my code: > stateHelperProvider .state({ name: 'assets', url: '/assets', templateUrl: 'app/assets/assets.html', children: [ { name: 'monitoring', url: '/monitoring', templateUrl: 'app/assets/assetsMonitoring/assetsMonitoring.html', controller: 'assetsMonitoringCtrl', controllerAs: 'vm' }, { name: 'report',...
after add this helper to my angular app i got the error in my console: `[$injector:modulerr] Failed to instantiate module {} due to`
After trying to use the stateHelper to reorganize my app's menu layout I'm getting an error; ``` Error: Could not resolve 'app.user.home' from state '' at Object.transitionTo (ionic.bundle.js:49177) at Object.go...
Hi, according ui-router doc you are allow to write: `.state('userlist', { url: '/users', component: 'users', // The component's name });` When I try to do the same in stateHelper, component...
The bower.json has this dependency: `"angular-ui-router": "~0.2.11"` which is preventing updates to 0.3.x angular-ui-router which is causing us to run into this issue: https://github.com/angular-ui/ui-router/issues/3246 I am wondering if there is...
Could you please attach working example with html and nested views (with they controllers) because I can't make nested views work and from ReadMe file I don't see why.
Hi, do you have any plans of supporting a TypeScript definitions file, or does one exist that is not registered on [typings](https://github.com/typed-typings) or not on [DefinitelyTyped](http://definitelytyped.org/)? Thanks
I don't believe this is a dup of the previous issue, but it would be helpful for me to be able to run the example in the readme doc for...