christopherthielen / ui-router-extras

THIS PROJECT IS NO LONGER MAINTAINED -- Extras for UI-Router for AngularJS. Sticky States (a.k.a. parallel states), Deep State Redirect (for tab-like navigation), Future States (async state definition)
http://christopherthielen.github.io/ui-router-extras/
MIT License
917 stars 211 forks source link

Sticky not working and routing failed after updating angular-ui-router @v1.0.15 #378

Closed ShrinathGupta closed 6 years ago

ShrinathGupta commented 6 years ago

Application failed after injecting ui-router-extras in application.

Error : rout_error

State Object Example:

 var inventoryObject = {
                name: 'inventory',
                url: '/inventory',
                params: {
                    headerLeft: 'back',
                    previousState: '',
                    headerText:  'Inventory View',
                    headerRight: ''
                },
                views: {
                    "header@": {
                        templateUrl: './js/shared/header/AppHeaderView.html',
                        controller: 'AppHeaderController',
                        controllerAs: 'headerCtrl'
                    },
                    "content@": {
                        templateUrl: './js/components/inventory/inventoryView.html',
                        controller: 'inventoryController',
                        controllerAs: 'inventoryCtrl'
                    }
                }
            };

Versions: Angulat-ui-router @v1.0.15 ui-router v@0.0.13

Any help will be appreciated.

@christopherthielen can you please have a look.

Thanks !