From 5dc37d3f0222a86a293d67df7078157d1ea3ec33 Mon Sep 17 00:00:00 2001 From: YourFriendlyNeighborhoodDealer Date: Sat, 23 Mar 2019 09:30:26 +0100 Subject: [PATCH] AlerOnNoQuestion tiny refactor --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index e8516f4..3cd2424 100644 --- a/main.js +++ b/main.js @@ -1120,13 +1120,13 @@ function NLoad(resource, cwith) { cwith(count, subjCount); } -var AlertOnNoQuestion = () => { +function AlertOnNoQuestion() { try { document.getElementById("HelperMenuButton").style.background = "yellow"; } catch (e) { Log("Unable to get helper menu button"); } -}; +} //: }}}