1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-01-24 03:49:29 +02:00
Tim Voronov 8629b57fa7
Added GetParentElement to HTMLElement struct (#571)
* Added GetParentElement to HTMLElement struct

* Fixed linter issue

* Fixed formatting
2020-11-20 23:09:12 -05:00

8 lines
111 B
Go

package templates
const getParent = "(el) => el.parentElement"
func GetParent() string {
return getParent
}