Skip to content

Commit

Permalink
feat(websites): update Butil's Element methods with Html in their nam…
Browse files Browse the repository at this point in the history
…e on the Platform website #6684 (#6685)
  • Loading branch information
msynk authored Jan 22, 2024
1 parent edf214c commit 6016062
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,17 +300,17 @@ private async Task GetId()

private async Task SetInnerHTML()
{
await innerHTMLElementRef.SetInnerHTML(newInnerHTML!);
await innerHTMLElementRef.SetInnerHtml(newInnerHTML!);
}

private async Task GetInnerHTML()
{
currentInnerHTML = await innerHTMLElementRef.GetInnerHTML();
currentInnerHTML = await innerHTMLElementRef.GetInnerHtml();
}

private async Task GetOuterHTML()
{
currentOuterHTML = await outerHTMLElementRef.GetOuterHTML();
currentOuterHTML = await outerHTMLElementRef.GetOuterHtml();
}

private async Task GetScrollHeight()
Expand Down

0 comments on commit 6016062

Please sign in to comment.