deardesi.js/views/about/about.js

17 lines
315 B
JavaScript
Raw Normal View History

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 () {}]);