Last active
December 16, 2015 22:49
-
-
Save gnrlbzik/5509467 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create registry | |
// order is wrong | |
$routeProvider | |
.when('/create', {templateUrl: 'partials/guide/create-registry.html', controller: 'create-registry'}) | |
.when('/create/:type', {templateUrl: 'partials/guide/create-registry.html', controller: 'create-registry'}) | |
.otherwise({redirectTo: '/create'}); | |
// should be | |
$routeProvider | |
.when('/create/:type', {templateUrl: 'partials/guide/create-registry.html', controller: 'create-registry'}) | |
.when('/create', {templateUrl: 'partials/guide/create-registry.html', controller: 'create-registry'}) | |
.otherwise({redirectTo: '/create'}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment