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
hi guys, I use node js plugin , and I write this code:
function test_me(){ console.log("work"); }
webview(function(err, api) { var win = api.window({ root_url: 'file:///Users/USER/Documents/LOCAL/SVILUPPO_WEB/test.html' }); win.show(); win.maximize(); win.on("closed",function(){ process.kill(); }); });
and in my local pc inside test.html
I'm trying to invocate remote function with parent.function() but don't work ... how can I do?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hi guys,
I use node js plugin , and I write this code:
function test_me(){
console.log("work");
}
webview(function(err, api) {
var win = api.window({ root_url: 'file:///Users/USER/Documents/LOCAL/SVILUPPO_WEB/test.html' });
win.show();
win.maximize();
win.on("closed",function(){
process.kill();
});
});
and in my local pc inside test.html
<script type="text/javascript"> jQuery(document).ready(function() { parent.test_me(); }); </script>I'm trying to invocate remote function with parent.function() but don't work ...
how can I do?
The text was updated successfully, but these errors were encountered: