Merge pull request #4057 from princejwesley/browser-window

Return null for no focused window when calling BrowserWindow.getFocusedWindow
This commit is contained in:
Cheng Zhao 2016-01-11 22:53:38 +08:00
Родитель 192fa4c86b 018ae5189b
Коммит 9e82334b67
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -66,6 +66,7 @@ BrowserWindow::_init = ->
BrowserWindow.getFocusedWindow = ->
windows = BrowserWindow.getAllWindows()
return window for window in windows when window.isFocused()
null
BrowserWindow.fromWebContents = (webContents) ->
windows = BrowserWindow.getAllWindows()

Просмотреть файл

@ -289,7 +289,7 @@ Returns an array of all opened browser windows.
### `BrowserWindow.getFocusedWindow()`
Returns the window that is focused in this application.
Returns the window that is focused in this application, otherwise returns `null`.
### `BrowserWindow.fromWebContents(webContents)`