docs: add <webview> new-window event removal to breaking-changes.md (#36985)

Co-authored-by: Milan Burda <miburda@microsoft.com>
This commit is contained in:
Milan Burda 2023-05-31 16:47:08 +02:00 committed by GitHub
parent b454f8c7c1
commit 67f273a6d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 101 additions and 0 deletions

View file

@ -0,0 +1,4 @@
const webview = document.getElementById('webview')
webview.addEventListener('new-window', () => {
console.log('got new-window event')
})