/*================ Routing ============*/
var module = angular.module('routeModule', ['ngRoute']);
module.config(function ($routeProvider) {
$routeProvider.when('/about', {
templateUrl: '/WebSite1/About.html',
controller: 'aboutController'
}).when('/port', {
templateUrl: '/WebSite1/portfolio.html',
controller: 'portfolioController'
}).otherwise({
redirectTo: '/WebSite1/portfolio.html'
});
});
var module = angular.module('routeModule', ['ngRoute']);
module.config(function ($routeProvider) {
$routeProvider.when('/about', {
templateUrl: '/WebSite1/About.html',
controller: 'aboutController'
}).when('/port', {
templateUrl: '/WebSite1/portfolio.html',
controller: 'portfolioController'
}).otherwise({
redirectTo: '/WebSite1/portfolio.html'
});
});