mirror of
https://github.com/arnaucube/goBlockchainDataAnalysis.git
synced 2026-02-08 03:56:45 +01:00
added origin node, upgraded webapp with angularbootstrapmaterial and better files distribution
This commit is contained in:
15
web/views/sankey/sankey.js
Normal file
15
web/views/sankey/sankey.js
Normal 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) {
|
||||
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user