diff --git a/src/scripts/search.tag b/src/scripts/search.tag index d8e65e9..f41a8e7 100644 --- a/src/scripts/search.tag +++ b/src/scripts/search.tag @@ -36,15 +36,20 @@ var showedHelp = false; +var waiting = false; function showHelp() { if (!showedHelp) { this.opts.showHelp = true; this.update(); - window.setTimeout( + if (!waiting) { + waiting = true; + window.setTimeout( (function() { + waiting = false; clearHelpTemp.bind(this)(); }).bind(this), 10000); + } } }