From ac813ddd2ec8c0c5661b0b33f168aef69ab1bf69 Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Thu, 8 Mar 2018 16:49:03 -0500 Subject: [PATCH] changed global util to _ to preview clash with app --- assets/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/app.js b/assets/js/app.js index cd293b3..65843fa 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -1,6 +1,6 @@ 'use strict'; -const app = { +const _ = { version: 0, debug: true, // http://paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/ @@ -14,6 +14,6 @@ const app = { }; riot.mixin({ - log: app.log, + log: _.log, relay: riot.observable() });