Small cleanups

This commit is contained in:
Cheng Zhao 2015-06-26 11:20:12 +08:00
parent bff66caaa6
commit b5ff77ef0d
3 changed files with 3 additions and 9 deletions

View file

@ -223,20 +223,16 @@ Emitted when devtools is focused / opened.
Emitted when an [App Command](https://msdn.microsoft.com/en-us/library/windows/desktop/ms646275(v=vs.85).aspx) is invoked. These are typically related to keyboard media keys or browser commands, as well as the "Back" button built into some mice on Windows.
```js
AppCommands = require('app-command');
someWindow.on('app-command', function(e, cmd) => {
someWindow.on('app-command', function(e, cmd) {
// Navigate the window back when the user hits their mouse back button
if (cmd === AppCommands.APPCOMMAND_BROWSER_BACKWARD &&
someWindow.webContents.canGoBack()) {
if (cmd === 'browser-backward' && someWindow.webContents.canGoBack()) {
someWindow.webContents.goBack();
}
});
```
__Note__: This event is only fired on Windows
__Note__: This event is only fired on Windows.
### Class Method: BrowserWindow.getAllWindows()