normalize autocomplete and spellcheck

This commit is contained in:
Sergio Crisostomo 2017-11-04 16:37:29 +01:00
parent 427dd34f0a
commit c17c5ad6cb
6 changed files with 28 additions and 5 deletions

View file

@ -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>

View file

@ -10,6 +10,8 @@
<input
type="text"
:value="currentPage"
autocomplete="off"
spellcheck="false"
@keydown="keyDown"
@keyup="keyUp"
@change="keyUp">