aboutsummaryrefslogtreecommitdiff
path: root/src/View/Timer.elm
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-03-18 09:17:40 +0100
committerJoris Guyonvarch2015-03-18 09:17:40 +0100
commit7ca7887ae82c09270869ed6737f94a99e210665c (patch)
tree421a775e115a7ea61d01e8165aee925ab44c9c42 /src/View/Timer.elm
parent2613aeeae0f4de44842ff0e796603d0316a61a14 (diff)
Finally use unter to update timer edition
Diffstat (limited to 'src/View/Timer.elm')
-rw-r--r--src/View/Timer.elm4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/View/Timer.elm b/src/View/Timer.elm
index 5d98fd1..b508dd6 100644
--- a/src/View/Timer.elm
+++ b/src/View/Timer.elm
@@ -33,7 +33,9 @@ timerView model (id, timer) =
in case maybeEdition of
Just edition ->
button
- [ class "time block edition" ]
+ [ class "time block edition"
+ , onClick (Signal.send updates ValidTimerEdition)
+ ]
[ text (editionView edition.numbers) ]
Nothing ->
button