17 lines
315 B
JavaScript
Raw Normal View History

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