Just start with node webkit and I just load the site through an iframe to get started ... (I know it's dirty, but it does two-handed work and a little time).
<iframe src="http://somewebsite.com"></iframe>
The fact is that I have a Google login for a site that creates a popup on the website. For some reason this is not in node-webkit, and I cannot find any document on enabling pop-ups ...
The code I use to sign in to Google is the default value they give us on the site: https://developers.google.com/accounts/docs/OAuth2Login
In configuring node -webkit, I am not installing anything interesting in node:
"window": { "toolbar": true, "width": 1024, "height": 768, "min_width": 300, "min_height": 300, "position": "center", "resizable": true, "show_in_taskbar": true, "icon": "www/resources/img/icon.png" },
So my question is: how do I enable pop-ups in node-webkit from an iframe to get Google OAuth to work? Thanks in advance for your help.
source share