UNPKG

desi

Version:

A nice, friendly tool to help you get set up and start blogging, built on the Desirae blogging platform

17 lines (13 loc) 352 B
"use strict"; angular .module("myApp.configure", ["ngRoute"]) .config([ "$routeProvider", function ($routeProvider) { $routeProvider.when("/configure", { templateUrl: "views/configure/configure.html", controller: "ConfigureCtrl as Configure", }); }, ]) .controller("ConfigureCtrl", [function () {}]);