From 91f68c7c954776f2b387fc255b3d242daa537665 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sun, 17 Sep 2017 23:46:10 +0200 Subject: [PATCH] removed some unused globals --- js/index.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/js/index.js b/js/index.js index 5bd9f2e..c65b387 100644 --- a/js/index.js +++ b/js/index.js @@ -6,12 +6,9 @@ try { require('./demo') } catch (err) {} require('./wifi') const $ = require('./lib/chibi') -const { qs, cr } = require('./utils') -const tr = require('./lang') +const { qs } = require('./utils') /* Export stuff to the global scope for inline scripts */ window.termInit = require('./term') window.$ = $ -window.tr = tr window.qs = qs -window.cr = cr