turn off autocorrect on ui

This commit is contained in:
Percs 2025-04-29 10:29:38 -05:00
parent 3d4e9f90c2
commit b022d5fe06

View file

@ -231,7 +231,8 @@ function BrowserApp() {
<button on:click=${() => frame.forward()}>-&gt;</button>
<button on:click=${() => frame.reload()}>&#x21bb;</button>
<input class="bar" bind:value=${use(this.url)} on:input=${(e) => {
<input class="bar" autocomplete="off" autocapitalize="off" autocorrect="off"
bind:value=${use(this.url)} on:input=${(e) => {
this.url = e.target.value;
}} on:keyup=${(e) => e.keyCode == 13 && (store.url = this.url) && handleSubmit()}></input>