Skip to content

Commit

Permalink
#175 fix dubmicated time in mark
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Mrowetz committed Mar 7, 2017
1 parent 1eabb34 commit eaf4927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ts/waterfall/sub-components/svg-marks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function createMarks(context: Context, marks: Mark[]) {
lineLabel.addEventListener("mouseleave", onLabelMouseLeave);
lineLabelHolder.appendChild(lineLabel);

markHolder.appendChild(svg.newTitle(mark.name + " (" + Math.round(mark.startTime) + "ms)"));
markHolder.appendChild(svg.newTitle(mark.name));
markHolder.appendChild(lineHolder);
markHolder.appendChild(lineLabelHolder);
marksHolder.appendChild(markHolder);
Expand Down

0 comments on commit eaf4927

Please sign in to comment.