From d75ffa93b31019a07826d92742aa6fc6cfe1cb63 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Wed, 9 Apr 2025 20:09:24 +0200 Subject: [PATCH] remove extra semicolon --- ana.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ana.html b/ana.html index 0903799..6d426f2 100644 --- a/ana.html +++ b/ana.html @@ -46,7 +46,7 @@ Module['onRuntimeInitialized'] = function() { update = function() { var search = document.getElementById("query").value; document.location.hash = '#' + search; - if(search == last) return false;; + if(search == last) return false; document.getElementById("results").innerText=Module.ana(search); last = search; return false;