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

docs: update webview tag link #7932

Merged
merged 1 commit into from
Aug 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/References/webview Tag.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To embed a web page in your app, add the webview tag to your app's embedder page

## References

See [Chrome document of `<webview>` tag](https://developer.chrome.com/apps/tags/webview) for detailed API references.
See [Chrome document of `<webview>` tag](https://developer.chrome.com/docs/extensions/reference/webviewTag/) for detailed API references.

NW.js added the following methods besides upstream APIs:

Expand Down Expand Up @@ -76,4 +76,4 @@ Lets assume you have simple NW.js app with webview.
Show all cookies for e.g. http://docs.nwjs.io in console (to have some cookies there you need to visit page first):
```html
chrome.cookies.getAll({url:"http://docs.nwjs.io", storeId:webview.getCookieStoreId()}, console.log.bind(console));
```
```