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

Fix that is described in ticket 134

parent 7ce0c77a
No related branches found
No related tags found
No related merge requests found
...@@ -156,11 +156,11 @@ function queryDataRecievingCallback(resultsList, detail) { ...@@ -156,11 +156,11 @@ function queryDataRecievingCallback(resultsList, detail) {
// Callback that is executed when all results from an issued query have been recieved // Callback that is executed when all results from an issued query have been recieved
function queryDataRecievedCallback(resultsList, detail) { function queryDataRecievedCallback(resultsList, detail) {
// hide or disable some things for the user // hide or disable some things for the user
resultsList.queryResultsUserFeedback.classList.toggle('hide'); resultsList.queryResultsUserFeedback.classList.toggle('hide', true);
resultsList.queryProgressBar.classList.toggle('hide'); resultsList.queryProgressBar.classList.toggle('hide', true);
// reset bar progress for next query // reset bar progress for next query
resultsList.queryProgressBar.firstElementChild.style.width = '0%'; resultsList.queryProgressBar.firstElementChild.style.width = '0%';
resultsList.showCorpusFiles.classList.toggle('disabled'); resultsList.showCorpusFiles.classList.toggle('disabled', false);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment