mirror of
https://github.com/electron/electron.git
synced 2026-01-10 07:58:08 -05:00
Remove semicolons
This commit is contained in:
@@ -5,11 +5,11 @@
|
||||
var opened = window.open('file://' + windowUrl, '', 'nodeIntegration=yes,show=no')
|
||||
window.addEventListener('message', function (event) {
|
||||
try {
|
||||
opened.close();
|
||||
opened.close()
|
||||
} finally {
|
||||
window.opener.postMessage(event.data, '*');
|
||||
window.opener.postMessage(event.data, '*')
|
||||
}
|
||||
});
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user