I have a webview tag, and I'm trying to execute javscript and read the result, as per the docs: Electron webview tag docs. However the callback is never executed:
@webviewOutlet.executeJavaScript("10+2", (n)-> console.log "#{n}") #Nothing in console
I'm using the WebView in NodeJS as part of an Atom package.