We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I run
println(dom.GetWindow().History().Length())
I get the error
Uncaught Error: runtime error: invalid memory address or nil pointer dereference
but if I use
println(js.Global.Get("history").Get("length"))
the output is "2", as expected, both running in Chrome Version 66.0.3359.181 (Official Build) (64-bit), the latest version.
The text was updated successfully, but these errors were encountered:
This is because window.History() is not implemented, see #41.
window.History()
Sorry, something went wrong.
No branches or pull requests
When I run
I get the error
but if I use
the output is "2", as expected, both running in Chrome Version 66.0.3359.181 (Official Build) (64-bit), the latest version.
The text was updated successfully, but these errors were encountered: