add helper for closedby attribute (on dialog tag)
1 file changed, 4 insertions(+), 0 deletions(-)
changed files
M html/attributes.go → html/attributes.go
@@ -20,6 +20,10 @@ func Checked() g.Node { return g.Attr("checked") } +func ClosedBy(v string) g.Node { + return g.Attr("closedby", v) +} + func Controls() g.Node { return g.Attr("controls") }