diff options
author | Joris Guyonvarch | 2015-03-19 00:55:50 +0100 |
---|---|---|
committer | Joris Guyonvarch | 2015-03-19 01:00:22 +0100 |
commit | af9465f928f28344aa59a407adb21e5ac047a0f9 (patch) | |
tree | 903327b8b8053933b95e2766b115ee48ecce9ef8 /src/View/View.elm | |
parent | 7ca7887ae82c09270869ed6737f94a99e210665c (diff) |
Adding a Ringing state that animate the color, does not ring a sound for the moment
Diffstat (limited to 'src/View/View.elm')
-rw-r--r-- | src/View/View.elm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/View/View.elm b/src/View/View.elm index d7a9b99..e86ea52 100644 --- a/src/View/View.elm +++ b/src/View/View.elm @@ -34,9 +34,15 @@ title : Html title = div [ class "title" ] - [ h1 [] [ text "Timer" ] + [ button + [ onClick (Signal.send updates Initialize) + , class "title" + ] + [ text "Timer" ] , button - [ onClick (Signal.send updates AddNewTimer) ] + [ onClick (Signal.send updates AddNewTimer) + , class "addTimer" + ] [ i [ class "fa fa-fw fa-plus" ] [] |