Skip to content

Commit

Permalink
Fixed encoding issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nabiulin committed Dec 14, 2015
1 parent 47a1973 commit b93ec64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/wavesurfer.regions.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ WaveSurfer.Region = {
Math.floor((time % 3600) / 60), // minutes
('00' + Math.floor(time % 60)).slice(-2) // seconds
].join(':');
}).join('');
}).join('-');
},

/* Update element's position, width, color. */
Expand Down

0 comments on commit b93ec64

Please sign in to comment.