aboutsummaryrefslogtreecommitdiff
path: root/src/View/Timer.elm
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-03-16 21:59:06 +0100
committerJoris Guyonvarch2015-03-16 21:59:06 +0100
commit8060fc370a8e16c7f39b1f63c6dc9127073eb5fe (patch)
treea1d049b1cd5afc55c12897a33b0ed7fddaa0e7dc /src/View/Timer.elm
parent36cb1d0392f4d32a4eed50ef2cc098dc90bb44e1 (diff)
Updating design
Diffstat (limited to 'src/View/Timer.elm')
-rw-r--r--src/View/Timer.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/View/Timer.elm b/src/View/Timer.elm
index 271de5c..5d34c7e 100644
--- a/src/View/Timer.elm
+++ b/src/View/Timer.elm
@@ -49,4 +49,4 @@ timeView time =
let totalSeconds = truncate (time / 1000)
totalMinutes = totalSeconds // 60
restSeconds = totalSeconds `rem` 60
- in (toString totalMinutes) ++ ":" ++ (String.padLeft 2 '0' (toString restSeconds))
+ in (toString totalMinutes) ++ " : " ++ (String.padLeft 2 '0' (toString restSeconds))