Skip to content

Commit

Permalink
duration fix
Browse files Browse the repository at this point in the history
  • Loading branch information
metaflow committed Oct 7, 2024
1 parent 3b7a764 commit c047c3a
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 @@ -232,7 +232,7 @@ <h1 class="text-2xl">Interactive race nutrition planner</h1>
}
s += `<br/>${formatHHMM(d.time)} `;
if (d.rangeDuration.distance > 0) {
s += ` [${formatHHMM(d.time + d.rangeStart.time)}..${formatHHMM(d.time + d.rangeDuration.time)}]`;
s += ` [${formatHHMM(d.time + d.rangeStart.time)}..${formatHHMM(d.time + d.rangeStart.time + d.rangeDuration.time)}]`;
}
if (d.notes) s += `<br/>${d.notes}`;
tooltip
Expand Down Expand Up @@ -637,8 +637,8 @@ <h1 class="text-2xl">Interactive race nutrition planner</h1>
}
}

// TODO: pace
// TODO: count site visits without cookies.
// TODO: move sort button to the first column.

setTimeout(() => {
loadData();
Expand Down

0 comments on commit c047c3a

Please sign in to comment.