Update visualizer.js

This commit is contained in:
rlauuzo 2024-07-13 18:13:20 +02:00 committed by GitHub
parent 009917b2e1
commit a13733bdad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ function findIntros() {
// get the times of all similar fingerprint points
for (let i in fprDiffs) {
if (fprDiffs[i] > fprDiffMinimum) {
times.push(i * 0.128);
times.push(i * 0.1238);
}
}
@ -57,7 +57,7 @@ function findIntros() {
introsLog.style.left = "115px";
introsLog.innerHTML = "";
const offset = Number(txtOffset.value) * 0.128;
const offset = Number(txtOffset.value) * 0.1238;
for (let r of ranges) {
let lStart, lEnd, rStart, rEnd;