6 lines
130 B
HTML
6 lines
130 B
HTML
<h1>webview page</h1>
|
|
<script>
|
|
window.addEventListener('beforeunload', event => {
|
|
event.returnValue = 'test'
|
|
})
|
|
</script>
|