deardesi
Version:
A nice, friendly tool to help you get set up and start blogging, built on the Desirae blogging platform
18 lines (16 loc) • 380 B
JavaScript
;
// Declare app level module which depends on views, and components
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'});
}]);