Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. myApp.config('$routeProvider', function($routeProvider) {
  2.   $routeProvider.
  3.   when('/first', {
  4.      templateUrl : 'partials/first.html'
  5.     controller: "FirstController"
  6. }).
  7. when('/second', {
  8.      templateUrl: 'partials/second.html'
  9.     controller: "SecondController"
  10.   }).
  11.   otherwise({
  12.     redirectTo:'/first'
  13.   });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement