Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/Pages.elm
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ view model =
}


viewPage : Animator.Timeline Page -> Page -> { title : String, content : Html msg } -> Html Msg
viewPage : Animator.Timeline Page -> Page -> { title : String, content : Html Msg } -> Html Msg
viewPage timeline page { title, content } =
let
wrapInLink html =
Expand All @@ -228,7 +228,7 @@ viewPage timeline page { title, content } =
(pageAnimation page)
[ Attr.class "page" ]
[ Html.h2 [] [ Html.text title ]
, loremIpsum
, content
]
|> wrapInLink

Expand Down