diff --git a/app.js b/app.js index 06947876727f805f59982727e6aba8d6172d6467..1a09494a84b3afd5069d2ef82b4f415da2652e8a 100644 --- a/app.js +++ b/app.js @@ -232,7 +232,8 @@ recordingButtons.forEach((button, index) => { let ourStartStop = codeDataButtonIndexes[index]; // [14, 19] let matchingStartStopIndexes = []; for (let i = 0; i < codeDataButtonIndexes.length; i++) { - if (codeDataButtonIndexes[i] === ourStartStop) { + if (JSON.stringify(codeDataButtonIndexes[i]) === JSON.stringify(ourStartStop)) { + // if (codeDataButtonIndexes[i] === ourStartStop) { matchingStartStopIndexes.push(i); } } @@ -282,7 +283,6 @@ recordingButtons.forEach((button, index) => { accumulator += filteredAnnotatedVals[i][2]; } - // debugger; // let stringBestValues = bestValues.map(a => a[0]); // TODO bestValues can contain duplicates, removing here bestValues = bestValues.filter((value, index, self) => self.indexOf(value) === index); @@ -299,7 +299,6 @@ recordingButtons.forEach((button, index) => { // // TODO Only add unique ones. // codeDataButtonSubstrings[0].push(...bestValues.map(codeData => codeData[0])); // let junk = analyze(codeDataButtonSubstrings[0]); -// debugger; // } else {