aboutsummaryrefslogtreecommitdiff
path: root/src/View/View.elm
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-03-19 00:55:50 +0100
committerJoris Guyonvarch2015-03-19 01:00:22 +0100
commitaf9465f928f28344aa59a407adb21e5ac047a0f9 (patch)
tree903327b8b8053933b95e2766b115ee48ecce9ef8 /src/View/View.elm
parent7ca7887ae82c09270869ed6737f94a99e210665c (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.elm10
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" ]
[]