mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-11 21:40:02 -04:00
turn off autocorrect on ui
This commit is contained in:
parent
3d4e9f90c2
commit
b022d5fe06
1 changed files with 2 additions and 1 deletions
|
@ -231,7 +231,8 @@ function BrowserApp() {
|
|||
<button on:click=${() => frame.forward()}>-></button>
|
||||
<button on:click=${() => frame.reload()}>↻</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>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue