From 99da4be174c24ef2fddb808f56b1d48112c6fd95 Mon Sep 17 00:00:00 2001 From: DCoded <dsoloha@live.com> Date: Sat, 18 May 2019 13:29:08 -0400 Subject: [PATCH] Removed changes to fc-js-init.js --- src/002-config/fc-js-init.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/002-config/fc-js-init.js b/src/002-config/fc-js-init.js index d0c5ef42917..107e1cc8c2d 100644 --- a/src/002-config/fc-js-init.js +++ b/src/002-config/fc-js-init.js @@ -1,3 +1,4 @@ +/* eslint-disable no-var */ /* * SugarCube executes scripts via eval() inside a closure. Thus to make App global, * we declare it as a property of the window object. I don't know why 'App = {}' @@ -5,7 +6,7 @@ */ window.App = { }; // the same declaration for code parsers that don't like the line above -let App = window.App || {}; +var App = window.App || {}; App.Data = {}; App.Debug = {}; -- GitLab