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
code's piece as below :
julia> using Blink julia> win = Window() julia> @js win x = 5 5 #right return value julia> loadurl(win, "https://www.github.com") Dict{String, Any}() #things coming bad julia> @js win x = 6 Dict{String, Any}() #wrong return value
But if open devtools in win before this, you can still get correct value of x in console. (although it's stiill wrong the return value in julia).
win
In julia do :
opentools(win) #open devtools in julia @js win x = 7
And in devtool's console we get :
> x 7
The text was updated successfully, but these errors were encountered:
No branches or pull requests
code's piece as below :
But if open devtools in
win
before this, you can still get correct value of x in console.(although it's stiill wrong the return value in julia).
In julia do :
And in devtool's console we get :
The text was updated successfully, but these errors were encountered: