Skip to content

Commit ebb00ad

Browse files
committed
Fix minutes. Closes #4
1 parent 3229324 commit ebb00ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default function(editor, opt = {}) {
5555
var distance = countDownDate - now;
5656
var days = Math.floor(distance / 86400000);
5757
var hours = Math.floor((distance % 86400000) / 3600000);
58-
var minutes = Math.floor((distance % 360000) / 60000);
58+
var minutes = Math.floor((distance % 3600000) / 60000);
5959
var seconds = Math.floor((distance % 60000) / 1000);
6060

6161
setTimer(days, hours, minutes, seconds);

0 commit comments

Comments
 (0)