diff options
author | Yorhel <git@yorhel.nl> | 2020-01-03 15:12:47 +0100 |
---|---|---|
committer | Yorhel <git@yorhel.nl> | 2020-01-03 15:12:47 +0100 |
commit | 8620f71c6180e06164b2b51f930d94acaa439036 (patch) | |
tree | 95708936782a2a77bd5346daed4da8a609c43e24 /elm/Lib/Html.elm | |
parent | d2fef9e2f1df8318c27651e6d1e8502857a49756 (diff) |
ulist: Display platform icons in releases listing
Diffstat (limited to 'elm/Lib/Html.elm')
-rw-r--r-- | elm/Lib/Html.elm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/elm/Lib/Html.elm b/elm/Lib/Html.elm index 66436073..2e534246 100644 --- a/elm/Lib/Html.elm +++ b/elm/Lib/Html.elm @@ -201,5 +201,8 @@ formField lbl cont = langIcon : String -> Html m langIcon l = abbr [ class "icons lang", class l, title (Maybe.withDefault "" <| lookup l T.languages) ] [ text " " ] +platformIcon : String -> Html m +platformIcon l = abbr [ class "icons", class l, title (Maybe.withDefault "" <| lookup l T.platforms) ] [ text " " ] + releaseTypeIcon : String -> Html m releaseTypeIcon t = abbr [ class ("icons rt"++t), title (Maybe.withDefault "" <| lookup t T.releaseTypes) ] [ text " " ] |