Browse Source

loading thingy

master
wes 9 years ago
parent
commit
b441406a23
  1. 6
      src/scripts/search.tag

6
src/scripts/search.tag

@ -36,10 +36,10 @@
</div> </div>
</search> </search>
var showedHelp = false; this.showedHelp = false;
function showHelp() { function showHelp() {
if (!showedHelp) { if (!this.showedHelp) {
this.opts.showHelp = true; this.opts.showHelp = true;
this.update(); this.update();
} }
@ -47,7 +47,7 @@ function showHelp() {
function clearHelp() { function clearHelp() {
this.opts.showHelp = false; this.opts.showHelp = false;
showedHelp = true; this.showedHelp = true;
this.update(); this.update();
} }

Loading…
Cancel
Save