normalize autocomplete and spellcheck
This commit is contained in:
parent
427dd34f0a
commit
c17c5ad6cb
6 changed files with 28 additions and 5 deletions
|
@ -7,7 +7,13 @@
|
|||
</div>
|
||||
<div v-if="showElevator" :class="ElevatorClasses">
|
||||
{{ t('i.page.goto') }}
|
||||
<input type="text" :value="_current" @keyup.enter="changePage">
|
||||
<input
|
||||
type="text"
|
||||
:value="_current"
|
||||
autocomplete="off"
|
||||
spellcheck="false"
|
||||
@keyup.enter="changePage"
|
||||
>
|
||||
{{ t('i.page.p') }}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -98,4 +104,4 @@
|
|||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
</script>
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
<input
|
||||
type="text"
|
||||
:value="currentPage"
|
||||
autocomplete="off"
|
||||
spellcheck="false"
|
||||
@keydown="keyDown"
|
||||
@keyup="keyUp"
|
||||
@change="keyUp">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue