summaryrefslogtreecommitdiffstats
path: root/templates/detailItems/email.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/detailItems/email.html')
-rw-r--r--templates/detailItems/email.html14
1 files changed, 0 insertions, 14 deletions
diff --git a/templates/detailItems/email.html b/templates/detailItems/email.html
deleted file mode 100644
index 543ec32c..00000000
--- a/templates/detailItems/email.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<select ng-model="ctrl.type" ng-model-options="{ debounce: 500 }" ng-change="ctrl.changeType(ctrl.type)" ng-disabled="ctrl.contact.readOnly">
- <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.updateContact()" value=""
- placeholder="{{ctrl.meta.readableName}}"
- focus-expression="$parent.ctrl.focus === ctrl.name"
- ng-disabled="ctrl.contact.readOnly"
-/>
-<button ng-click="ctrl.deleteField()" class="icon-delete" title="{{ctrl.t.delete}}" ng-if="!ctrl.contact.readOnly"></button>