Remove code moved to DluxApps
[dlux.git] / modules / yangman-resources / src / main / resources / yangman / views / rightpanel / form / config / list-filtered-data-top.tpl.html
diff --git a/modules/yangman-resources/src/main/resources/yangman/views/rightpanel/form/config/list-filtered-data-top.tpl.html b/modules/yangman-resources/src/main/resources/yangman/views/rightpanel/form/config/list-filtered-data-top.tpl.html
deleted file mode 100644 (file)
index 7167146..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<!-- previous item button -->
-<button ng-click="shiftDisplayPrev()"
-        ng-show="showPrevButton()"
-        tooltip="{{ 'YANGMAN_LIST_PREV_ITEM' | translate }}"
-        class="yangButton iconPrev"></button>
-
-<!-- item list -->
-<div class="listButtonWrapper"
-     ng-repeat="offset in displayOffsets"
-     ng-if="currentDisplayIndex + offset > -1 && node.filteredListData.length > currentDisplayIndex + offset">
-
-    <button class="btn btn-like-tab {{ (currentDisplayIndex + offset === node.actElemIndex ? 'btn-selected':'') }}"
-             ng-click="node.changeActElementData(currentDisplayIndex + offset,false)"
-             tooltip="{{getListName(offset, false).tooltip}}">
-        {{yangForm.getNodeName(node.localeLabel, node.label)}}&nbsp;{{ getListName(offset, true).name }}
-    </button>
-
-    <!-- delete button -->
-    <button class="yangButton iconClose"
-            tooltip="{{ 'YANGMAN_LIST_DELETE_ITEM' | translate }}"
-            ng-click='removeListElem(currentDisplayIndex + offset,true)'></button>
-
-    <!-- duplicate indicator -->
-    <button class="yangButton iconDanger"
-            tooltip="{{ 'YANGMAN_LIST_INDEX_DUPLICATE' | translate }}"
-            ng-show="node.doubleKeyIndexes.indexOf(currentDisplayIndex + offset)>-1"></button>
-</div>
-
-<!-- next item button -->
-<button ng-click="shiftDisplayNext('filteredListData')"
-        ng-show="showNextButton('filteredListData')"
-        tooltip="{{ 'YANGMAN_LIST_NEXT_ITEM' | translate }}"
-        class="yangButton iconNext"></button>