Details Type
Constructors
| Constructor |
Description
|
Full Usage:
Details(url, frameName, features, disposition, referrer, ?postBody)
Parameters:
string
-
The _resolved_ version of the URL passed to window.open(). e.g. opening a window with window.open('foo') will yield something like
https://the-origin/the/current/path/foo.
frameName : string
-
Name of the window provided in window.open()
features : string
-
Comma separated list of window features provided to window.open().
disposition : Disposition
-
Can be default, foreground-tab, background-tab, new-window or other.
referrer : Referrer
-
The referrer that will be passed to the new window. May or may not result in the Referer header
being sent, depending on the referrer policy.
?postBody : PostBody
-
The post data that will be sent to the new window, along with the appropriate headers that will be
set. If no post data is to be sent, the value will be null. Only defined when the window is
being created by a form that set target=_blank.
Returns: Details
|
|
Instance members
| Instance member |
Description
|
Full Usage:
this.disposition
|
Can be default, foreground-tab, background-tab, new-window or other. |
Full Usage:
this.features
|
Comma separated list of window features provided to window.open(). |
Full Usage:
this.frameName
|
Name of the window provided in window.open() |
Full Usage:
this.postBody
|
The post data that will be sent to the new window, along with the appropriate headers that will be set. If no post data is to be sent, the value will be null. Only defined when the window is being created by a form that set target=_blank. |
Full Usage:
this.referrer
|
The referrer that will be passed to the new window. May or may not result in the Referer header being sent, depending on the referrer policy. |
Full Usage:
this.url
|
The resolved version of the URL passed to window.open(). e.g. opening a window with window.open('foo') will yield something like https://the-origin/the/current/path/foo. |
fable-electron-docs-api