2020-11-09 03:30:15 +00:00
|
|
|
"use strict";
|
2015-01-13 10:18:13 +00:00
|
|
|
|
2020-11-09 03:30:15 +00:00
|
|
|
angular
|
|
|
|
.module("myApp.about", ["ngRoute"])
|
2015-01-13 10:18:13 +00:00
|
|
|
|
2020-11-09 03:30:15 +00:00
|
|
|
.config([
|
|
|
|
"$routeProvider",
|
|
|
|
function ($routeProvider) {
|
|
|
|
$routeProvider.when("/about", {
|
|
|
|
templateUrl: "views/about/about.html",
|
|
|
|
controller: "AboutCtrl",
|
|
|
|
});
|
|
|
|
},
|
|
|
|
])
|
2015-01-13 10:18:13 +00:00
|
|
|
|
2020-11-09 03:30:15 +00:00
|
|
|
.controller("AboutCtrl", [function () {}]);
|