diff options
author | Joris Guyonvarch | 2015-03-18 09:17:40 +0100 |
---|---|---|
committer | Joris Guyonvarch | 2015-03-18 09:17:40 +0100 |
commit | 7ca7887ae82c09270869ed6737f94a99e210665c (patch) | |
tree | 421a775e115a7ea61d01e8165aee925ab44c9c42 /src/View/Timer.elm | |
parent | 2613aeeae0f4de44842ff0e796603d0316a61a14 (diff) |
Finally use unter to update timer edition
Diffstat (limited to 'src/View/Timer.elm')
-rw-r--r-- | src/View/Timer.elm | 4 |
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 |