2015-05-01 05:48:23 +00:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
window.onbeforeunload = function() {
|
|
|
|
setTimeout(function() {
|
2015-11-10 07:29:43 +00:00
|
|
|
var ipc = require('ipc-renderer');
|
2015-05-01 05:48:23 +00:00
|
|
|
ipc.sendToHost('onbeforeunload');
|
|
|
|
}, 0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|