Add draggable attribute (#185)
Leonardo Silveira sombriks@gmail.com
Mon, 08 Jul 2024 14:52:42 -0300
2 files changed, 5 insertions(+), 0 deletions(-)
M html/attributes.go → html/attributes.go
@@ -40,6 +40,10 @@ func Disabled() g.Node { return g.Attr("disabled") } +func Draggable(v string) g.Node { + return g.Attr("draggable", v) +} + func Loop() g.Node { return g.Attr("loop") }
M html/attributes_test.go → html/attributes_test.go
@@ -55,6 +55,7 @@ {Name: "colspan", Func: ColSpan}, {Name: "content", Func: Content}, {Name: "crossorigin", Func: CrossOrigin}, {Name: "datetime", Func: DateTime}, + {Name: "draggable", Func: Draggable}, {Name: "enctype", Func: EncType}, {Name: "dir", Func: Dir}, {Name: "for", Func: For},