diff options
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 |