Skip to content

Commit

Permalink
#123 Renamed 'innerHtml' to 'innerHTML' (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
ziflex authored Oct 16, 2018
1 parent d7df80d commit 3939800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/runtime/values/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 3939800

Please sign in to comment.