Skip to content
Snippets Groups Projects
Commit 90cf1bf8 authored by Stephan Porada's avatar Stephan Porada :speech_balloon:
Browse files

Fix

parent 0d40f04b
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ function querySetup(payload) {
console.log("Query setup.");
console.log(payload);
queryResultsDeterminateElement.style.width = "0%";
queryResultsProgressElement.classList.remove("hide");
receivedMatchNumElement.innerText = "0";
textLookupNumElement.innerText = "0";
matchNumElement.innerText = payload.num_matches;
......@@ -10,7 +11,7 @@ function querySetup(payload) {
results["matches"] = []; // list of all c with lc and rc
results["cpos_lookup"] = {}; // object contains all cpos as key value pair
results["text_lookup"] = {}; // same as above for all text ids
results[]
results["num_matches"] = payload.num_matches;
}
function queryRenderResults(payload) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment