mirror of
https://github.com/electron/electron.git
synced 2026-02-19 03:14:51 -05:00
Close all windows before installing update.
This commit is contained in:
@@ -50,6 +50,16 @@ window.onerror = (error) ->
|
||||
else
|
||||
false
|
||||
|
||||
# Enable browser to close window silently.
|
||||
setTimeout ->
|
||||
require('ipc').once 'ATOM_SHELL_SILENT_CLOSE', ->
|
||||
window.onbeforeunload = null
|
||||
window.close()
|
||||
|
||||
# Override default window.close.
|
||||
window.close = ->
|
||||
require('remote').getCurrentWindow().close()
|
||||
|
||||
# Override default window.open.
|
||||
window.open = (url, name, features) ->
|
||||
options = {}
|
||||
|
||||
Reference in New Issue
Block a user