From c908fcc8755f588f2577fb8aa119b79c4ee9c620 Mon Sep 17 00:00:00 2001 From: Miodec Date: Tue, 18 Jan 2022 00:01:12 +0100 Subject: [PATCH] removed some unnecessary exports --- src/js/exports.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/js/exports.js b/src/js/exports.js index 16a0c52a6..a53a09e63 100644 --- a/src/js/exports.js +++ b/src/js/exports.js @@ -1,8 +1,6 @@ //this file should be concatenated with the legacy js files //try to keep this list short because we need to eliminate it eventually -global.simplePopups = SimplePopups.simplePopups; -global.sendVerificationEmail = Misc.sendVerificationEmail; global.getuid = Misc.getuid; //these exports are just for debugging in the browser @@ -13,12 +11,8 @@ global.linkToGoogle = AccountController.linkWithGoogle; global.unlinkGoogle = AccountController.unlinkGoogle; global.linkToEmail = AccountController.linkWithEmail; -global.filters = ResultFilters.getFilters(); - global.glarsesMode = toggleGlarses; -global.filterDebug = Account.toggleFilterDebug; - global.stats = TestStats.getStats; global.replay = Replay.getReplayExport; @@ -27,4 +21,4 @@ global.enableTimerDebug = TestTimer.enableTimerDebug; global.getTimerStats = TestTimer.getTimerStats; -global.objecthash = require("object-hash"); +global.toggleUnsmoothedRaw = Result.toggleUnsmoothedRaw;