remove extra semicolon

This commit is contained in:
Jeff Epler 2025-04-09 20:09:24 +02:00
parent 2249090a99
commit d75ffa93b3

View file

@ -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;