Bladeren bron

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 jaren geleden
committed by Guillaume Vincent
bovenliggende
commit
516aadff34
1 gewijzigde bestanden met toevoegingen van 2 en 0 verwijderingen
  1. +2
    -0
      src/views/Login.vue

+ 2
- 0
src/views/Login.vue Bestand weergeven

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


Laden…
Annuleren
Opslaan