mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-11-24 08:53:33 +03:00
Disallow clickable images
This commit is contained in:
parent
5b696dc7da
commit
b0a4fb6a19
@ -115,7 +115,7 @@ viewPanels parentMsg panels current =
|
||||
|
||||
{-| -}
|
||||
type alias Panel msg =
|
||||
{ icon : Html msg
|
||||
{ icon : Html Never
|
||||
, title : String
|
||||
, content : Html msg
|
||||
, buttonLabel : String
|
||||
@ -145,7 +145,7 @@ viewContent content =
|
||||
[ content ]
|
||||
|
||||
|
||||
viewIcon : Html msg -> Html msg
|
||||
viewIcon : Html Never -> Html msg
|
||||
viewIcon svg =
|
||||
div
|
||||
[ css
|
||||
@ -163,6 +163,7 @@ viewIcon svg =
|
||||
]
|
||||
]
|
||||
[ svg ]
|
||||
|> Html.map never
|
||||
|
||||
|
||||
viewFooter : { label : String, msg : msg } -> Html msg
|
||||
|
Loading…
Reference in New Issue
Block a user