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

View File

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