summaryrefslogtreecommitdiffstats
path: root/templates/contactDetails.html
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-03-02 09:41:56 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-03-02 09:41:56 +0100
commit0ccc21fc3e5b547315e94f7a57dc9854e6419159 (patch)
tree7a9159c8b5ebba306f7b258315a209f74aac9c43 /templates/contactDetails.html
parent228fce2a679623ff202f3f03e303f77aa2df2b2d (diff)
parentdc298f79eee9efc395da830721633bdf212e777c (diff)
Merge pull request #75 from owncloud/open-new-contact-and-focus-fullname
Open new contact and focus on fullName.
Diffstat (limited to 'templates/contactDetails.html')
-rw-r--r--templates/contactDetails.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/contactDetails.html b/templates/contactDetails.html
index 66add7d4..9b2836c4 100644
--- a/templates/contactDetails.html
+++ b/templates/contactDetails.html
@@ -8,7 +8,7 @@
<header class="contactdetails__header" ng-style="{'background-color': (ctrl.contact.uid() | contactColor)}">
<img class="contactdetails__logo avatar" data-ng-src="data:image/png;base64,{{ctrl.photo}}" />
<h2>
- <input type="text" id="details-email" 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}}" 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>