summaryrefslogtreecommitdiffstats
path: root/templates/detailItems/email.html
blob: d297bf9d5f7b919431464c47195559b682295ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<select ng-model="ctrl.type" ng-model-options="{ debounce: 500 }" ng-change="ctrl.changeType(ctrl.type)">
    <option ng-repeat="option in ctrl.availableOptions" value="{{option.id}}">{{option.name}}</option>
</select>
<a ng-if="ctrl.data.value.length" class="item-action" href="mailto:{{ctrl.data.value}}">
    <i class="icon-mail"></i>
</a>
<input type="email" id="details-{{ctrl.name}}-{{ctrl.index}}" name="email"
       ng-model="ctrl.data.value" email-model ng-model-options="{ debounce: 500 }"
       ng-change="ctrl.model.updateContact()" value=""
       placeholder="{{ctrl.meta.readableName}}"
       focus-expression="$parent.ctrl.focus === ctrl.name"
/>
<button ng-click="ctrl.deleteField()" class="icon-delete" title="{{ctrl.t.delete}}"></button>