desirae.js/app.js

13 lines
288 B
JavaScript
Raw Normal View History

2015-01-10 07:23:15 +00:00
'use strict';
// Declare app level module which depends on views, and components
angular.module('myApp', [
'ngRoute',
'myApp.about',
'myApp.build',
'myApp.version'
]).
config(['$routeProvider', function ($routeProvider) {
$routeProvider.otherwise({redirectTo: '/about'});
}]);