deardesi.js/app.js

22 lines
429 B
JavaScript
Raw Permalink Normal View History

2020-11-09 03:30:15 +00:00
"use strict";
2015-01-13 10:18:13 +00:00
// Declare app level module which depends on views, and components
2020-11-09 03:30:15 +00:00
angular
.module("myApp", [
"ngRoute",
"myApp.about",
"myApp.authors",
"myApp.site",
"myApp.build",
"myApp.configure",
"myApp.post",
"myApp.version",
"myApp.services",
])
.config([
"$routeProvider",
function ($routeProvider) {
$routeProvider.otherwise({ redirectTo: "/about" });
},
]);