SankeySheets/scripts/main.js.html
2016-06-01 11:26:47 +01:00

18 lines
354 B
HTML

/**
* Sankey snip app
*/
google.load ('visualization', '1.1', {'packages':['sankey']});
google.setOnLoadCallback(function() {
// set up client app structure
App.initialize();
Process.initialize().then (function () {
// set any listeners
Home.initialize();
// get some data to the client and start
Client.start();
});
});