summaryrefslogtreecommitdiff
path: root/elm/Discussions/Reply.elm
diff options
context:
space:
mode:
Diffstat (limited to 'elm/Discussions/Reply.elm')
-rw-r--r--elm/Discussions/Reply.elm7
1 files changed, 5 insertions, 2 deletions
diff --git a/elm/Discussions/Reply.elm b/elm/Discussions/Reply.elm
index 79278a20..ed239cbe 100644
--- a/elm/Discussions/Reply.elm
+++ b/elm/Discussions/Reply.elm
@@ -60,8 +60,11 @@ view model =
form_ Submit (model.state == Api.Loading)
[ div [ class "mainbox" ]
[ fieldset [ class "submit" ]
- [ h2 [] [ text "Quick reply", b [ class "standout" ] [ text " (English please!)" ] ]
- , TP.view "msg" model.msg Content 600 ([rows 4, cols 50] ++ GDR.valMsg)
+ [ TP.view "msg" model.msg Content 600 ([rows 4, cols 50] ++ GDR.valMsg)
+ [ b [] [ text "Quick reply" ]
+ , b [ class "standout" ] [ text " (English please!) " ]
+ , a [ href "/d9#3" ] [ text "Formatting" ]
+ ]
, submitButton "Submit" model.state True
]
]