deardesi.js/views/configure/configure.js

17 lines
352 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.configure", ["ngRoute"])
2015-01-13 10:18:13 +00:00
2020-11-09 03:30:15 +00:00
.config([
"$routeProvider",
function ($routeProvider) {
$routeProvider.when("/configure", {
templateUrl: "views/configure/configure.html",
controller: "ConfigureCtrl as Configure",
});
},
])
2015-01-13 10:18:13 +00:00
2020-11-09 03:30:15 +00:00
.controller("ConfigureCtrl", [function () {}]);