1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-09-16 09:06:36 +02:00

#123 Renamed 'innerHtml' to 'innerHTML' (#133)

This commit is contained in:
Tim Voronov
2018-10-16 19:33:02 -04:00
committed by GitHub
parent d7df80df9d
commit 3939800299

View File

@@ -59,7 +59,7 @@ func GetIn(from core.Value, byPath []core.Value) (core.Value, error) {
result = el.NodeName()
case "innerText":
result = el.InnerText()
case "innerHtml":
case "innerHTML":
result = el.InnerHTML()
case "value":
result = el.Value()