electron/spec/fixtures/module/preload-webview.js

6 lines
126 B
JavaScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
const { ipcRenderer } = require('electron');
window.onload = function () {
2020-03-20 20:28:31 +00:00
ipcRenderer.send('webview', typeof WebView);
};