summaryrefslogtreecommitdiffstats
path: root/templates/contactDetails.html
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2016-03-07 23:26:50 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2016-03-07 23:26:50 +0100
commit21095126e16adb9cae1f22e0d6ad8f750c968b54 (patch)
tree104043d2de621253c6258be7c2ed1c37a6b31daa /templates/contactDetails.html
parent62cc23d37df60b130633224e251d7840ae3c6ca1 (diff)
fix some more select2 CSS issues
Diffstat (limited to 'templates/contactDetails.html')
-rw-r--r--templates/contactDetails.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/contactDetails.html b/templates/contactDetails.html
index 357d0b4d..dbd819a7 100644
--- a/templates/contactDetails.html
+++ b/templates/contactDetails.html
@@ -8,7 +8,8 @@
<header class="contactdetails__header" ng-style="{'background-color': (ctrl.contact.uid() | contactColor)}">
<img ng-if="ctrl.photo!==undefined" class="contactdetails__logo avatar" data-ng-src="data:image/png;base64,{{ctrl.photo}}" />
<h2>
- <input type="text" id="details-fullName" class="contactdetails__name" placeholder="{{ctrl.t.placeholderName}}" name="email" ng-model="ctrl.contact.fullName" ng-model-options="{ getterSetter: true, debounce: 500 }" ng-change="ctrl.updateContact()" value="" />
+ <input type="text" id="details-fullName" class="contactdetails__name" placeholder="{{ctrl.t.placeholderName}}" autocomplete="off"
+ name="email" ng-model="ctrl.contact.fullName" ng-model-options="{ getterSetter: true, debounce: 500 }" ng-change="ctrl.updateContact()" value="" />
</h2>
<button ng-click="ctrl.deleteContact()" class="icon-delete-white" title="Delete"></button>
</header>