Sfoglia il codice sorgente

Do not automatically capitalize inputs (#19)

With things like URLs and emails, it doesn't make sense to have these automatically capitalize. On my Android phone app, the default settings however do automatically capitalize.

MDN: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-autocapitalize
pull/342/head
Kyle J. Kress 7 anni fa
committed by Guillaume Vincent
parent
commit
516aadff34
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. +2
    -0
      src/views/Login.vue

+ 2
- 0
src/views/Login.vue Vedi File

@@ -15,6 +15,7 @@
<input id="baseURL"
class="form-control"
type="text"
autocapitalize="none"
v-bind:placeholder="$t('LessPass Database Url')"
v-model="baseURL">
</div>
@@ -27,6 +28,7 @@
class="form-control"
name="username"
type="email"
autocapitalize="none"
v-bind:placeholder="$t('Email')"
required
v-model="email">


Caricamento…
Annulla
Salva