зеркало из https://github.com/electron/electron.git
19 строки
403 B
HTML
19 строки
403 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
<script>
|
|
const {remote} = require('electron')
|
|
const browserWindow = remote.getCurrentWindow()
|
|
|
|
const handler = () => {}
|
|
browserWindow.webContents.on('remote-handler', handler)
|
|
browserWindow.webContents.on('other-remote-handler', handler)
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
</body>
|
|
</html>
|