Replace empty hrefs with a href #

This commit is contained in:
Eike Kettner 2020-12-17 21:15:33 +01:00
parent c9d4e8ec46
commit 69f57d1eb1
18 changed files with 35 additions and 35 deletions

View File

@ -230,7 +230,7 @@ loginInfo model =
, div [ class "divider" ] [] , div [ class "divider" ] []
, a , a
[ class "icon item" [ class "icon item"
, href "" , href "#"
, onClick Logout , onClick Logout
] ]
[ i [ class "sign out icon" ] [] [ i [ class "sign out icon" ] []

View File

@ -135,7 +135,7 @@ view1 settings compact model =
, value model.value , value model.value
] ]
[] []
, a [ class "ui button", onClick AddContact, href "" ] , a [ class "ui button", onClick AddContact, href "#" ]
[ text "Add" [ text "Add"
] ]
] ]

View File

@ -129,7 +129,7 @@ view model =
, ( "disabled", not model.state.active ) , ( "disabled", not model.state.active )
] ]
, onClick PickFiles , onClick PickFiles
, href "" , href "#"
] ]
[ i [ class "folder open icon" ] [] [ i [ class "folder open icon" ] []
, text "Select ..." , text "Select ..."

View File

@ -268,12 +268,12 @@ viewForm settings model =
, a , a
[ class "ui secondary button" [ class "ui secondary button"
, onClick (SetViewMode Table) , onClick (SetViewMode Table)
, href "" , href "#"
] ]
[ text "Cancel" [ text "Cancel"
] ]
, if model.formModel.settings.name /= "" then , if model.formModel.settings.name /= "" then
a [ class "ui right floated red button", href "", onClick RequestDelete ] a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ] [ text "Delete" ]
else else

View File

@ -282,11 +282,11 @@ viewForm model =
, button [ class "ui primary button", type_ "submit" ] , button [ class "ui primary button", type_ "submit" ]
[ text "Submit" [ text "Submit"
] ]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "" ] , a [ class "ui secondary button", onClick (SetViewMode Table), href "#" ]
[ text "Cancel" [ text "Cancel"
] ]
, if not newEquipment then , if not newEquipment then
a [ class "ui right floated red button", href "", onClick RequestDelete ] a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ] [ text "Delete" ]
else else

View File

@ -268,12 +268,12 @@ viewForm settings model =
, a , a
[ class "ui secondary button" [ class "ui secondary button"
, onClick (SetViewMode Table) , onClick (SetViewMode Table)
, href "" , href "#"
] ]
[ text "Cancel" [ text "Cancel"
] ]
, if model.formModel.settings.name /= "" then , if model.formModel.settings.name /= "" then
a [ class "ui right floated red button", href "", onClick RequestDelete ] a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ] [ text "Delete" ]
else else

View File

@ -772,7 +772,7 @@ item visible. This message will disappear then.
actionInputDatePicker actionInputDatePicker
model.itemDatePicker model.itemDatePicker
) )
, a [ class "ui icon button", href "", onClick RemoveDate ] , a [ class "ui icon button", href "#", onClick RemoveDate ]
[ i [ class "trash alternate outline icon" ] [] [ i [ class "trash alternate outline icon" ] []
] ]
, Icons.dateIcon "" , Icons.dateIcon ""
@ -791,7 +791,7 @@ item visible. This message will disappear then.
actionInputDatePicker actionInputDatePicker
model.dueDatePicker model.dueDatePicker
) )
, a [ class "ui icon button", href "", onClick RemoveDueDate ] , a [ class "ui icon button", href "#", onClick RemoveDueDate ]
[ i [ class "trash alternate outline icon" ] [] ] [ i [ class "trash alternate outline icon" ] [] ]
, Icons.dueDateIcon "" , Icons.dueDateIcon ""
] ]

View File

@ -155,7 +155,7 @@ renderDetailMenu settings inav model =
] ]
, title "Edit Metadata" , title "Edit Metadata"
, onClick ToggleMenu , onClick ToggleMenu
, href "" , href "#"
] ]
[ i [ class "edit icon" ] [] [ i [ class "edit icon" ] []
] ]
@ -835,7 +835,7 @@ item visible. This message will disappear then.
actionInputDatePicker actionInputDatePicker
model.itemDatePicker model.itemDatePicker
) )
, a [ class "ui icon button", href "", onClick RemoveDate ] , a [ class "ui icon button", href "#", onClick RemoveDate ]
[ i [ class "trash alternate outline icon" ] [] [ i [ class "trash alternate outline icon" ] []
] ]
, Icons.dateIcon "" , Icons.dateIcon ""
@ -855,7 +855,7 @@ item visible. This message will disappear then.
actionInputDatePicker actionInputDatePicker
model.dueDatePicker model.dueDatePicker
) )
, a [ class "ui icon button", href "", onClick RemoveDueDate ] , a [ class "ui icon button", href "#", onClick RemoveDueDate ]
[ i [ class "trash alternate outline icon" ] [] ] [ i [ class "trash alternate outline icon" ] [] ]
, Icons.dueDateIcon "" , Icons.dueDateIcon ""
] ]
@ -957,7 +957,7 @@ renderSuggestions model mkName idnames tagger =
, div [ class "menu" ] <| , div [ class "menu" ] <|
(idnames (idnames
|> List.take 5 |> List.take 5
|> List.map (\p -> a [ class "item", href "", onClick (tagger p) ] [ text (mkName p) ]) |> List.map (\p -> a [ class "item", href "#", onClick (tagger p) ] [ text (mkName p) ])
) )
] ]
] ]

View File

@ -108,7 +108,7 @@ view model =
[ class "item" [ class "item"
, title "Expand all" , title "Expand all"
, onClick ExpandAll , onClick ExpandAll
, href "" , href "#"
] ]
[ i [ class "double angle down icon" ] [] [ i [ class "double angle down icon" ] []
] ]
@ -116,7 +116,7 @@ view model =
[ class "item" [ class "item"
, title "Collapse all" , title "Collapse all"
, onClick CollapseAll , onClick CollapseAll
, href "" , href "#"
] ]
[ i [ class "double angle up icon" ] [] [ i [ class "double angle up icon" ] []
] ]
@ -166,7 +166,7 @@ viewGroup model group =
, a , a
[ class "header" [ class "header"
, onClick (ToggleGroupState group) , onClick (ToggleGroupState group)
, href "" , href "#"
] ]
[ text group.name [ text group.name
] ]

View File

@ -283,11 +283,11 @@ viewForm settings model =
, button [ class "ui primary button", type_ "submit" ] , button [ class "ui primary button", type_ "submit" ]
[ text "Submit" [ text "Submit"
] ]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "" ] , a [ class "ui secondary button", onClick (SetViewMode Table), href "#" ]
[ text "Cancel" [ text "Cancel"
] ]
, if not newOrg then , if not newOrg then
a [ class "ui right floated red button", href "", onClick RequestDelete ] a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ] [ text "Delete" ]
else else

View File

@ -326,14 +326,14 @@ viewForm settings model =
, a , a
[ class "ui secondary button" [ class "ui secondary button"
, onClick (SetViewMode Table) , onClick (SetViewMode Table)
, href "" , href "#"
] ]
[ text "Cancel" [ text "Cancel"
] ]
, if not newPerson then , if not newPerson then
a a
[ class "ui right floated red button" [ class "ui right floated red button"
, href "" , href "#"
, onClick RequestDelete , onClick RequestDelete
] ]
[ text "Delete" ] [ text "Delete" ]

View File

@ -389,11 +389,11 @@ viewForm flags settings model =
, button [ class "ui primary button", type_ "submit" ] , button [ class "ui primary button", type_ "submit" ]
[ text "Submit" [ text "Submit"
] ]
, a [ class "ui secondary button", onClick SetTableView, href "" ] , a [ class "ui secondary button", onClick SetTableView, href "#" ]
[ text "Cancel" [ text "Cancel"
] ]
, if not newSource then , if not newSource then
a [ class "ui right floated red button", href "", onClick RequestDelete ] a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ] [ text "Delete" ]
else else

View File

@ -291,11 +291,11 @@ viewForm model =
, button [ class "ui primary button", type_ "submit" ] , button [ class "ui primary button", type_ "submit" ]
[ text "Submit" [ text "Submit"
] ]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "" ] , a [ class "ui secondary button", onClick (SetViewMode Table), href "#" ]
[ text "Cancel" [ text "Cancel"
] ]
, if not newTag then , if not newTag then
a [ class "ui right floated red button", href "", onClick RequestDelete ] a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ] [ text "Delete" ]
else else

View File

@ -253,11 +253,11 @@ viewForm settings model =
, button [ class "ui primary button", type_ "submit" ] , button [ class "ui primary button", type_ "submit" ]
[ text "Submit" [ text "Submit"
] ]
, a [ class "ui secondary button", onClick (SetViewMode Table), href "" ] , a [ class "ui secondary button", onClick (SetViewMode Table), href "#" ]
[ text "Cancel" [ text "Cancel"
] ]
, if not newUser then , if not newUser then
a [ class "ui right floated red button", href "", onClick RequestDelete ] a [ class "ui right floated red button", href "#", onClick RequestDelete ]
[ text "Delete" ] [ text "Delete" ]
else else

View File

@ -120,11 +120,11 @@ view2 active settings model =
] ]
, div [ class "content" ] , div [ class "content" ]
[ div [ class "ui buttons" ] [ div [ class "ui buttons" ]
[ a [ class "ui primary button", onClick ConfirmDelete, href "" ] [ a [ class "ui primary button", onClick ConfirmDelete, href "#" ]
[ text settings.confirmButton [ text settings.confirmButton
] ]
, div [ class "or" ] [] , div [ class "or" ] []
, a [ class "ui secondary button", onClick Disable, href "" ] , a [ class "ui secondary button", onClick Disable, href "#" ]
[ text settings.cancelButton [ text settings.cancelButton
] ]
] ]

View File

@ -87,7 +87,7 @@ view flags settings model =
[ class "borderless item" [ class "borderless item"
, onClick (DoSearch BasicSearch) , onClick (DoSearch BasicSearch)
, title "Run search query" , title "Run search query"
, href "" , href "#"
, disabled model.searchInProgress , disabled model.searchInProgress
] ]
[ i [ i

View File

@ -51,7 +51,7 @@ view flags model =
] ]
[ text "Submit" [ text "Submit"
] ]
, a [ class "ui right floated button", href "", onClick Reset ] , a [ class "ui right floated button", href "#", onClick Reset ]
[ text "Reset" [ text "Reset"
] ]
, resultMessage model , resultMessage model

View File

@ -25,10 +25,10 @@ view mid model =
] ]
, Html.map DropzoneMsg (Comp.Dropzone.view model.dropzone) , Html.map DropzoneMsg (Comp.Dropzone.view model.dropzone)
, div [ class "ui bottom attached segment" ] , div [ class "ui bottom attached segment" ]
[ a [ class "ui primary button", href "", onClick SubmitUpload ] [ a [ class "ui primary button", href "#", onClick SubmitUpload ]
[ text "Submit" [ text "Submit"
] ]
, a [ class "ui secondary button", href "", onClick Clear ] , a [ class "ui secondary button", href "#", onClick Clear ]
[ text "Reset" [ text "Reset"
] ]
] ]
@ -91,7 +91,7 @@ renderSuccessMsg public _ =
] ]
, p [] , p []
[ text "Click " [ text "Click "
, a [ class "ui link", href "", onClick Clear ] , a [ class "ui link", href "#", onClick Clear ]
[ text "Reset" [ text "Reset"
] ]
, text " to upload more files." , text " to upload more files."