added origin node, upgraded webapp with angularbootstrapmaterial and better files distribution

This commit is contained in:
arnaucode
2017-07-26 19:58:52 +02:00
parent 57f953dcc9
commit 568bd6af46
17 changed files with 898 additions and 179 deletions

14
web/views/main/main.js Normal file
View File

@@ -0,0 +1,14 @@
'use strict';
angular.module('app.main', ['ngRoute'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/main', {
templateUrl: 'views/main/main.html',
controller: 'MainCtrl'
});
}])
.controller('MainCtrl', function($scope, $http) {
});