deardesi.js/views/configure/configure.js

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