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

uncomment log messages

parent d9353e3d
No related branches found
No related tags found
No related merge requests found
......@@ -264,8 +264,8 @@ class ResultsList extends List {
tokenHTMlElement = this.HTMLTStrToElement(htmlTokenStr)
tokenHTMLArray.push(tokenHTMlElement);
}
console.log(tokenHTMLArray);
console.log(uniqueS);
// console.log(tokenHTMLArray);
// console.log(uniqueS);
for (let sId of uniqueS) {
let htmlSentence = `<span class="sentence" data-sid="${sId}"></span>`;
......@@ -300,7 +300,7 @@ class ResultsList extends List {
};
nrOfContextSentences.onchange = (event) => {
console.log(event.target.value);
// console.log(event.target.value);
this.changeSentenceContext(event.target.value);
}
......@@ -343,7 +343,7 @@ class ResultsList extends List {
let toHideArray;
let toShowArray;
sValue = maxSValue - sValue;
console.log(sValue);
// console.log(sValue);
sentences = document.getElementById("context-results").getElementsByClassName("sentence");
array = Array.from(sentences);
if (sValue != 0) {
......@@ -353,9 +353,9 @@ class ResultsList extends List {
toHideArray = [];
toShowArray = array;
}
console.log(array);
console.log("#######");
console.log(toHideArray);
// console.log(array);
// console.log("#######");
// console.log(toHideArray);
for (let s of toHideArray) {
s.classList.add("hide");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment