mirror of
https://github.com/electron/electron.git
synced 2026-02-04 12:15:22 -05:00
Verified migration doc (nothing to be done) http://eslint.org/docs/user-guide/migrating-to-2.0.0 And made sure the eslint tasks passed
5 lines
136 B
JavaScript
5 lines
136 B
JavaScript
var ipcRenderer = require('electron').ipcRenderer;
|
|
window.onload = function() {
|
|
ipcRenderer.send('answer', typeof window.process);
|
|
};
|