f17864372e
The setImmediate is implemented in node and may have unexpected affects.
13 lines
273 B
HTML
13 lines
273 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
window.onbeforeunload = function() {
|
|
setTimeout(function() {
|
|
require('remote').getCurrentWindow().emit('onbeforeunload');
|
|
}, 0);
|
|
return false;
|
|
}
|
|
window.close();
|
|
</script>
|
|
</body>
|
|
</html>
|