Remove code from old ui

This commit is contained in:
Eike Kettner
2021-04-17 10:24:25 +02:00
parent b3c3c783dc
commit c9b54e80b7
3 changed files with 2 additions and 59 deletions

View File

@@ -1,6 +1,5 @@
module Util.Html exposing
( KeyCode(..)
, checkbox
, checkbox2
, classActive
, intToKeyCode
@@ -22,25 +21,6 @@ import Html.Events exposing (keyCode, on, preventDefaultOn)
import Json.Decode as D
checkboxChecked : Html msg
checkboxChecked =
i [ class "ui check square outline icon" ] []
checkboxUnchecked : Html msg
checkboxUnchecked =
i [ class "ui square outline icon" ] []
checkbox : Bool -> Html msg
checkbox flag =
if flag then
checkboxChecked
else
checkboxUnchecked
checkbox2 : Bool -> Html msg
checkbox2 flag =
if flag then