all repos — gomponents @ 4248e85def552b68672b8f6f4de12f0e2bf50517

HTML components in pure Go

Add "checked" bool attribute

Fixes #127.
Markus Wüstenberg markus@maragu.dk
Thu, 11 May 2023 11:22:01 +0200
commit

4248e85def552b68672b8f6f4de12f0e2bf50517

parent

4f9709afcc83b617f17f8e5757d58a55be7bf2cf

2 files changed, 5 insertions(+), 0 deletions(-)

jump to
M html/attributes.gohtml/attributes.go
@@ -16,6 +16,10 @@ func AutoPlay() g.Node { 	return g.Attr("autoplay")
 }
 
+func Checked() g.Node {
+	return g.Attr("checked")
+}
+
 func Controls() g.Node {
 	return g.Attr("controls")
 }
M html/attributes_test.gohtml/attributes_test.go
@@ -14,6 +14,7 @@ cases := map[string]func() g.Node{ 		"async":       Async,
 		"autofocus":   AutoFocus,
 		"autoplay":    AutoPlay,
+		"checked":     Checked,
 		"controls":    Controls,
 		"defer":       Defer,
 		"disabled":    Disabled,