Update links to web-contents.md

This commit is contained in:
Jessica Lord 2015-09-10 12:19:37 -07:00
parent 6cfe43a644
commit aae2d82c28
4 changed files with 4 additions and 4 deletions

View file

@ -263,7 +263,7 @@ Returns the window that is focused in this application.
### `BrowserWindow.fromWebContents(webContents)` ### `BrowserWindow.fromWebContents(webContents)`
* `webContents` [WebContents](#webcontents) * `webContents` [WebContents](web-contents.md)
Find a window according to the `webContents` it owns. Find a window according to the `webContents` it owns.

View file

@ -7,7 +7,7 @@ a renderer will be emitted to this module.
## Sending Messages ## Sending Messages
It is also possible to send messages from the main process to the renderer It is also possible to send messages from the main process to the renderer
process, see [WebContents.send](browser-window.md#webcontents-send-channel-args) process, see [WebContents.send](web-contents.md#webcontentssendchannel-args)
for more information. for more information.
- When sending a message, the event name is the `channel`. - When sending a message, the event name is the `channel`.

View file

@ -21,7 +21,7 @@ win.loadUrl('https://github.com');
``` ```
**Note:** for the reverse (access the renderer process from the main process), **Note:** for the reverse (access the renderer process from the main process),
you can use [webContents.executeJavascript](browser-window.md#webcontents-executejavascript-code). you can use [webContents.executeJavascript](web-contents.md#webcontentsexecutejavascriptcode-usergesture).
## Remote Objects ## Remote Objects

View file

@ -355,7 +355,7 @@ Prints webview's web page as PDF, Same with `webContents.printToPDF(options, cal
Send `args..` to guest page via `channel` in asynchronous message, the guest Send `args..` to guest page via `channel` in asynchronous message, the guest
page can handle it by listening to the `channel` event of `ipc` module. page can handle it by listening to the `channel` event of `ipc` module.
See [WebContents.send](browser-window.md#webcontentssendchannel-args) for See [WebContents.send](web-contents.md#webcontentssendchannel-args) for
examples. examples.
## DOM events ## DOM events