Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Webview navigation history getter documentation. #5752

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/References/webview Tag.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,9 @@ and add 'partition="trusted"' attribute to the webview tag.

### Node.js support in webview

To enable Node.js support in WebView, add the `allownw` attribute to the webview tag. Then Node.js will be turned on, no matter it loads local file or remote site. Use this feature with caution because webview is normally supposed to load untrusted contents.
To enable Node.js support in WebView, add the `allownw` attribute to the webview tag. Then Node.js will be turned on, no matter it loads local file or remote site. Use this feature with caution because webview is normally supposed to load untrusted contents.

### Navigation history in webview
Webview is keepeng its navigation history so you can navigate throught it via `back`, `forward`, `go`, eventually `canGoBack` and `canGoForward` functions (see API references above). To see navigation history use:
* `webview.getPagesHistory()` returns array of objects with `url`, `favicon` and `title` (favicons and titles are available only for non-current navigation).
* `webview.getCurrentHistoryIndex()` returns current index in getPagesHistory array (if you navigate back you can be in middle of navigation history).