diff --git a/plugin/wavesurfer.timeline.js b/plugin/wavesurfer.timeline.js index 475758611..507e25b7a 100644 --- a/plugin/wavesurfer.timeline.js +++ b/plugin/wavesurfer.timeline.js @@ -174,7 +174,7 @@ WaveSurfer.Timeline = { seconds = (seconds < 10) ? '0' + seconds : seconds; return '' + minutes + ':' + seconds; } else { - return seconds; + return Math.round(seconds * 1000) / 1000; } };