diff options
author | Joris | 2016-06-28 00:32:37 +0200 |
---|---|---|
committer | Joris | 2016-06-29 20:34:05 +0200 |
commit | 071b07463ab3f6894928b13553e98cd47c9ccb18 (patch) | |
tree | fad6e7f6c8e9aa730f7c113868debc1812795cc9 /src/client/elm/LoggedIn/Home/View | |
parent | f605541cbaaa3c339eef8f345547bcd653d3f721 (diff) |
Add tooltips
Diffstat (limited to 'src/client/elm/LoggedIn/Home/View')
-rw-r--r-- | src/client/elm/LoggedIn/Home/View/Table.elm | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/client/elm/LoggedIn/Home/View/Table.elm b/src/client/elm/LoggedIn/Home/View/Table.elm index ebffeb9..05c9e06 100644 --- a/src/client/elm/LoggedIn/Home/View/Table.elm +++ b/src/client/elm/LoggedIn/Home/View/Table.elm @@ -13,6 +13,12 @@ import Html exposing (..) import Html.Attributes exposing (..) import Html.Events exposing (..) +import Dialog +import Dialog.Model as DialogModel +import Dialog.AddPaymentButton.View as AddPaymentButton + +import Tooltip + import Msg exposing (Msg) import LoggedData exposing (LoggedData) @@ -28,10 +34,6 @@ import Model.User exposing (getUserName) import Model.Payment as Payment exposing (..) import Model.Translations exposing (getMessage) -import Dialog -import Dialog.Model as DialogModel -import Dialog.AddPaymentButton.View as AddPaymentButton - view : LoggedData -> HomeModel.Model -> Payments -> Frequency -> Html Msg view loggedData homeModel payments frequency = let visiblePayments = @@ -107,6 +109,7 @@ paymentLine loggedData homeModel frequency payment = (DialogModel.clonePaymentInitial loggedData.translations currentDate payment) "ClonePayment" (FontAwesome.clone Color.chestnutRose 18) + (Just (getMessage "Clone" loggedData.translations)) ] , div [ class "cell button" ] @@ -119,6 +122,7 @@ paymentLine loggedData homeModel frequency payment = (DialogModel.editPaymentInitial loggedData.translations payment) "EditPayment" (FontAwesome.edit Color.chestnutRose 18) + (Just (getMessage "Edit" loggedData.translations)) ] , div [ class "cell button" ] @@ -135,7 +139,9 @@ paymentLine loggedData homeModel frequency payment = , undo = getMessage "Undo" loggedData.translations } in button - [ onClick (Msg.Dialog <| Dialog.Open dialogConfig) ] + ( Tooltip.show Msg.Tooltip (getMessage "Delete" loggedData.translations) + ++ [ onClick (Msg.Dialog <| Dialog.Open dialogConfig) ] + ) [ FontAwesome.trash Color.chestnutRose 18 ] ] ] |