Skip to content

Commit

Permalink
update delay to lookback only
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbluecrew committed Feb 1, 2024
1 parent 89293dc commit fb8ad13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@
function networkOnSeek(elapsed) {
const rows = [];

const elapsedStart = elapsed - networkDetailDelaySeconds / 2;
const elapsedEnd = elapsed + networkDetailDelaySeconds / 2;
const elapsedStart = elapsed - networkDetailDelaySeconds;
const elapsedEnd = elapsed;
for (let currentTime = elapsedStart; currentTime <= elapsedEnd; currentTime++) {
const records = networkBucket[currentTime] || [];
for (let recordIdx = 0; recordIdx < records.length; recordIdx++) {
Expand Down

0 comments on commit fb8ad13

Please sign in to comment.