14 lines
272 B
HTML
14 lines
272 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
window.onbeforeunload = function() {
|
|
setImmediate(function() {
|
|
require('remote').getCurrentWindow().emit('onbeforeunload');
|
|
});
|
|
return true;
|
|
}
|
|
window.close();
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|