From af9465f928f28344aa59a407adb21e5ac047a0f9 Mon Sep 17 00:00:00 2001 From: Joris Guyonvarch Date: Thu, 19 Mar 2015 00:55:50 +0100 Subject: Adding a Ringing state that animate the color, does not ring a sound for the moment --- src/View/View.elm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/View/View.elm') 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" ] [] -- cgit v1.2.3