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