summaryrefslogtreecommitdiffstats
path: root/templates/detailItems
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2016-11-30 17:37:17 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2016-11-30 17:37:17 +0100
commit02f061a23c182fd37db326c9092c62e29191635f (patch)
tree39a5123ba041b92d87923001dde7b9a9d95d2154 /templates/detailItems
parentb7606e264d8d917be557ff5f0709a6155a8b3b60 (diff)
Add detailed name
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'templates/detailItems')
-rw-r--r--templates/detailItems/n.html15
1 files changed, 10 insertions, 5 deletions
diff --git a/templates/detailItems/n.html b/templates/detailItems/n.html
index e21b73b5..098a442f 100644
--- a/templates/detailItems/n.html
+++ b/templates/detailItems/n.html
@@ -2,21 +2,26 @@
<button ng-click="ctrl.deleteField()" class="icon-delete" title="Delete"></button>
<div>
<label for="details-honorificPrefix">{{ctrl.t.honorificPrefix}}</label>
- <input type="text" id="details-honorificPrefix" name="honorificPrefix" ng-model="ctrl.data.value[3]" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateDetailedName()" value="" />
+ <input type="text" id="details-honorificPrefix" name="honorificPrefix" ng-model="ctrl.data.value[3]" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateDetailedName()"
+ autocomplete="off" autocorrect="off" spellcheck="false" value="" />
</div>
<div>
<label for="details-firstName">{{ctrl.t.firstName}}</label>
- <input type="text" id="details-firstName" name="firstName" ng-model="ctrl.data.value[1]" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateDetailedName()" value="" />
+ <input type="text" id="details-firstName" name="firstName" ng-model="ctrl.data.value[1]" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateDetailedName()"
+ autocomplete="off" autocorrect="off" spellcheck="false" value="" />
</div>
<div>
<label for="details-additionalNames">{{ctrl.t.additionalNames}}</label>
- <input type="text" id="details-additionalNames" name="additionalNames" ng-model="ctrl.data.value[2]" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateDetailedName()" value="" />
+ <input type="text" id="details-additionalNames" name="additionalNames" ng-model="ctrl.data.value[2]" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateDetailedName()"
+ autocomplete="off" autocorrect="off" spellcheck="false" value="" />
</div>
<div>
<label for="details-familyName">{{ctrl.t.familyName}}</label>
- <input type="text" id="details-familyName" name="familyName" ng-model="ctrl.data.value[0]" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateDetailedName()" value="" />
+ <input type="text" id="details-familyName" name="familyName" ng-model="ctrl.data.value[0]" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateDetailedName()"
+ autocomplete="off" autocorrect="off" spellcheck="false" value="" />
</div>
<div>
<label for="details-honorificSuffix">{{ctrl.t.honorificSuffix}}</label>
- <input type="text" id="details-honorificSuffix" name="honorificSuffix" ng-model="ctrl.data.value[4]" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateDetailedName()" value="" />
+ <input type="text" id="details-honorificSuffix" name="honorificSuffix" ng-model="ctrl.data.value[4]" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateDetailedName()"
+ autocomplete="off" autocorrect="off" spellcheck="false" value="" />
</div>