diff options
Diffstat (limited to 'html/attributes.go')
-rw-r--r-- | html/attributes.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/html/attributes.go b/html/attributes.go index be8393e..e4cd796 100644 --- a/html/attributes.go +++ b/html/attributes.go @@ -213,6 +213,18 @@ func Placeholder(v string) g.Node { return g.Attr("placeholder", v) } +func Popover(value ...string) g.Node { + return g.Attr("popover", value...) +} + +func PopoverTarget(v string) g.Node { + return g.Attr("popovertarget", v) +} + +func PopoverTargetAction(v string) g.Node { + return g.Attr("popovertargetaction", v) +} + func Poster(v string) g.Node { return g.Attr("poster", v) } |