From b441406a23a95233fd0f506adf2e3dfcb81df5a1 Mon Sep 17 00:00:00 2001 From: wes Date: Mon, 8 Aug 2016 20:06:34 -0400 Subject: [PATCH] loading thingy --- src/scripts/search.tag | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/scripts/search.tag b/src/scripts/search.tag index 500b5c2..d954f11 100644 --- a/src/scripts/search.tag +++ b/src/scripts/search.tag @@ -36,10 +36,10 @@ -var showedHelp = false; +this.showedHelp = false; function showHelp() { - if (!showedHelp) { + if (!this.showedHelp) { this.opts.showHelp = true; this.update(); } @@ -47,7 +47,7 @@ function showHelp() { function clearHelp() { this.opts.showHelp = false; - showedHelp = true; + this.showedHelp = true; this.update(); }