11 lines
233 B
HTML
11 lines
233 B
HTML
|
<html>
|
||
|
<body>
|
||
|
<script type="text/javascript" charset="utf-8">
|
||
|
window.addEventListener('unload', function (e) {
|
||
|
require('fs').writeFileSync(__dirname + '/test', 'close');
|
||
|
}, false);
|
||
|
window.close();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|