mirror of
https://github.com/electron/electron.git
synced 2026-01-14 18:08:07 -05:00
14 lines
295 B
HTML
14 lines
295 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
window.onbeforeunload = function() {
|
|
setTimeout(function() {
|
|
var ipcRenderer = require('electron').ipcRenderer;
|
|
ipcRenderer.sendToHost('onbeforeunload');
|
|
}, 0);
|
|
return false;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|