Lightly massage some of the generated JavaScript

This commit is contained in:
Arlo Breault 2019-07-06 15:20:07 +02:00
parent 31ad9566e6
commit 1867a3f121
19 changed files with 986 additions and 989 deletions

View file

@ -1,22 +1,20 @@
// Generated by CoffeeScript 2.4.1
/*
Entry point.
*/
var broker, config, dbg, log, snowflake, ui;
config = new Config;
var config = new Config;
ui = new UI();
var ui = new UI();
broker = new Broker(config.brokerUrl);
var broker = new Broker(config.brokerUrl);
snowflake = new Snowflake(config, ui, broker);
var snowflake = new Snowflake(config, ui, broker);
log = function(msg) {
var log = function(msg) {
return console.log('Snowflake: ' + msg);
};
dbg = log;
var dbg = log;
log('== snowflake proxy ==');