2013-09-02 08:54:54 +00:00
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
window.onbeforeunload = function() {
|
|
|
|
setTimeout(function() {
|
2015-11-12 10:28:04 +00:00
|
|
|
require('electron').remote.getCurrentWindow().emit('onbeforeunload');
|
2013-09-02 08:54:54 +00:00
|
|
|
}, 0);
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
window.close();
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|