Skip to content

Instantly share code, notes, and snippets.

@wcadap
Created December 31, 2014 08:26
Show Gist options
  • Save wcadap/d9d2243525f4408ce574 to your computer and use it in GitHub Desktop.
Save wcadap/d9d2243525f4408ce574 to your computer and use it in GitHub Desktop.
contactApp.config(['$routeProvider', function ($routeProvider) {
$routeProvider.when('/', {
templateUrl: "/app/Home/home.html"
}),
$routeProvider.when('/about', {
templateUrl: "app/Home/about.html"
}),
$routeProvider.when('/mycontacts', {
templateUrl: "app/contact/html/contactsList.html",
controller: "contactController"
}),
$routeProvider.when('/mycontacts/newcontact', {
templateUrl: "app/contact/html/contactForm.html"
}),
$routeProvider.otherwise({
redirectTo: '/'
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment