diff --git a/app/static/js/nopaque.analyse_corpus.js b/app/static/js/nopaque.analyse_corpus.js index 2dd914e2..d968b3cb 100644 --- a/app/static/js/nopaque.analyse_corpus.js +++ b/app/static/js/nopaque.analyse_corpus.js @@ -128,7 +128,7 @@ function recieveResults(response) { result["loaded_match_count"] += Object.keys(chunk["matches"]).length; console.log("After current match count", result["loaded_match_count"]); let queryResultsMetadataElement = document.getElementById("query-results-metadata"); - queryResultsMetadataElement.innerHTML = `
The query resulted in a total of ${chunk["match_count"]} matches.
${result["loaded_match_count"]} of ${result["match_count"]} matches in ${count_corpus_files} corpus files have been loaded.help
`; + queryResultsMetadataElement.innerHTML = `The query resulted in a total of ${chunk["match_count"]} matches.
${result["loaded_match_count"]} of ${result["match_count"]} matches in ${count_corpus_files} corpus files have been loaded.
helpThe Server is still sending your results. Functions like "Export Results" and "Match Inspect" will be available after all matches have been loaded.
`; let queryResultsInteractionElement = document.getElementById("interaction-elements"); queryResultsInteractionElement.appendChild(exportQueryResultsElement); let queryResultsHeadElement = document.getElementById("query-results-head"); @@ -137,19 +137,13 @@ function recieveResults(response) { console.log(queryStatus); queryResultsDeterminateElement.style["width"] = `${queryStatus}%`; console.log(queryResultsDeterminateElement.style["width"]); - toolTipInfoElement = document.getElementById("tool-tip-info"); - M.Tooltip.init(toolTipInfoElement, {"html": `The Server is still sending you your results. Functions like "Export Results" and "Match Inspect" will be available after all matches have been loaded.
`, - "inDuration": 1500, - "margin": 15, - "position": "top", - "transitionMovement": 0}); + // enable download and inspect when query is finished // also sets queryFinished to true if (queryStatus === 100) { queryFinished = true; // global declaration to set downlaod button and inspects buttons back to disabled for new queries queryResultsDeterminateElement.parentNode.parentNode.classList.add("hide"); exportQueryResultsElement.classList.remove("disabled"); - toolTipInfoElement.classList.add("hide"); queryResultsMetadataElement.innerHTML = `The query resulted in a total of ${chunk["match_count"]} matches.
${result["loaded_match_count"]} of ${result["match_count"]} matches in ${count_corpus_files} corpus files have been loaded.check_circle
`; activateInspect(); }