Skip to content

Commit

Permalink
docs: More explaination to affinity option
Browse files Browse the repository at this point in the history
  • Loading branch information
zcbenz committed Feb 13, 2018
1 parent 9c1b473 commit 2b623f5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions docs/api/browser-window.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,13 @@ It creates a new `BrowserWindow` with native properties as set by the `options`.
same `partition`. If there is no `persist:` prefix, the page will use an
in-memory session. By assigning the same `partition`, multiple pages can share
the same session. Default is the default session.
* `affinity` String (optional) - Sets the expected process hosting the page. Allow to gather
several pages in the same process. There are known limitations:
you can not host in the same site, pages with different preload file,
nodeIntegration or sandbox preferences.
* `affinity` String (optional) - When specified, web pages with the same
`affinity` will run in the same renderer process. Note that due to reusing
the renderer process, certain `webPreferences` options will also be shared
between the web pages even when you specified different values for them,
including but not limited to `preload`, `sandbox` and `nodeIntegration`.
So it is suggested to use exact same `webPreferences` for web pages with
the same `affinity`.
* `zoomFactor` Number (optional) - The default zoom factor of the page, `3.0` represents
`300%`. Default is `1.0`.
* `javascript` Boolean (optional) - Enables JavaScript support. Default is `true`.
Expand Down

0 comments on commit 2b623f5

Please sign in to comment.