mirror of
https://github.com/electron/electron.git
synced 2026-01-30 17:58:33 -05:00
* fix: don't handle browser messages before document element is created * fix: bind ElectronApiServiceImpl later DidCreateDocumentElement is called before the ElectronApiServiceImpl gets bound. * chore: add comment
10 lines
205 B
HTML
10 lines
205 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
require('fs').readdir(process.cwd(), () => {
|
|
require('electron').ipcRenderer.send('async-node-api-done');
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|