21 lines
407 B
HTML
21 lines
407 B
HTML
|
|
// the app
|
|
|
|
google.load ('visualization', '1.1', {'packages':['sankey']});
|
|
|
|
google.setOnLoadCallback(function() {
|
|
|
|
// set up client app structure
|
|
App.initialize();
|
|
Sankey.initialize();
|
|
Process.initialize();
|
|
|
|
// initialize this page
|
|
Home.initialize();
|
|
|
|
// get some data to the client and start
|
|
Client.getData();
|
|
|
|
});
|
|
|
|
|