summaryrefslogtreecommitdiffstats
path: root/templates/detailItems/url.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/detailItems/url.html')
-rw-r--r--templates/detailItems/url.html12
1 files changed, 0 insertions, 12 deletions
diff --git a/templates/detailItems/url.html b/templates/detailItems/url.html
deleted file mode 100644
index d39eba32..00000000
--- a/templates/detailItems/url.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<label for="details-{{ctrl.name}}-{{ctrl.index}}">{{ctrl.meta.readableName}}</label>
-<a ng-if="ctrl.data.value.length" class="item-action" target="_blank" href="{{ctrl.data.value}}">
- <i class="icon-external"></i>
-</a>
-<input type="url" id="details-{{ctrl.name}}-{{ctrl.index}}" name="{{ctrl.name}}"
- ng-model="ctrl.data.value" ng-model-options="{ debounce: 500, allowInvalid: true }"
- ng-change="ctrl.updateContact()" value=""
- placeholder="https://…"
- 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>