mirror of
https://github.com/arnaucube/goBlockchainDataAnalysis.git
synced 2026-02-07 03:36:44 +01:00
added origin node, upgraded webapp with angularbootstrapmaterial and better files distribution
This commit is contained in:
12
web/views/sankey/sankey.html
Normal file
12
web/views/sankey/sankey.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="panel-heading c_blueGrey300">
|
||||
<h3 class="panel-title">Sankey</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
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