summaryrefslogtreecommitdiffstats
path: root/templates/detailItems/select.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/detailItems/select.html')
-rw-r--r--templates/detailItems/select.html7
1 files changed, 0 insertions, 7 deletions
diff --git a/templates/detailItems/select.html b/templates/detailItems/select.html
deleted file mode 100644
index 64d583de..00000000
--- a/templates/detailItems/select.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<label ng-if="ctrl.availableOptions.length > 0" for="details-{{ctrl.name}}">{{ctrl.meta.readableName}}</label>
-<select id="details-{{ctrl.name}}" name="{{ctrl.name}}" ng-if="ctrl.availableOptions.length > 0"
- ng-model="ctrl.data.value" ng-model-options="{ debounce: 500 }" ng-change="ctrl.updateContact()"
- ng-disabled="ctrl.contact.readOnly">
- <option ng-repeat="option in ctrl.availableOptions" value="{{option.id}}">{{option.name}}</option>
-</select>
-<button ng-click="ctrl.deleteField()" class="icon-delete" title="{{ctrl.t.delete}}" ng-if="!ctrl.contact.readOnly"></button>