diff options
author | Joris Guyonvarch | 2015-03-16 21:59:06 +0100 |
---|---|---|
committer | Joris Guyonvarch | 2015-03-16 21:59:06 +0100 |
commit | 8060fc370a8e16c7f39b1f63c6dc9127073eb5fe (patch) | |
tree | a1d049b1cd5afc55c12897a33b0ed7fddaa0e7dc /src/View/Timer.elm | |
parent | 36cb1d0392f4d32a4eed50ef2cc098dc90bb44e1 (diff) |
Updating design
Diffstat (limited to 'src/View/Timer.elm')
-rw-r--r-- | src/View/Timer.elm | 2 |
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)) |