changed global util to _ to preview clash with app

This commit is contained in:
Geoff Doty 2018-03-08 16:49:03 -05:00
parent 21ef146eb0
commit ac813ddd2e
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
'use strict'; 'use strict';
const app = { const _ = {
version: 0, version: 0,
debug: true, debug: true,
// http://paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/ // http://paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
@ -14,6 +14,6 @@ const app = {
}; };
riot.mixin({ riot.mixin({
log: app.log, log: _.log,
relay: riot.observable() relay: riot.observable()
}); });