Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save raizal/c29ef0235cdcd7b568a50359fcdf02df to your computer and use it in GitHub Desktop.
Save raizal/c29ef0235cdcd7b568a50359fcdf02df to your computer and use it in GitHub Desktop.
Retreive parameter named "url" that's passed on BrowserWindow initiation
var url = require('electron').remote.getCurrentWindow().webContents.browserWindowOptions.url;
onload = () => {
const webview = document.querySelector('webview')
webview.src = url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment