2015-01-16 02:48:11 +00:00
|
|
|
<div style="width: 100%; height: 100%; position: absolute; left: 0px; top: 0px;"
|
2015-01-16 02:53:59 +00:00
|
|
|
ng-controller="FixedController as controller"
|
|
|
|
mct-resize="controller.setBounds(bounds)">
|
2015-01-15 01:48:57 +00:00
|
|
|
|
2015-01-16 02:48:11 +00:00
|
|
|
<!-- Background grid -->
|
2015-02-19 03:51:42 +00:00
|
|
|
<span ng-click="controller.clearSelection()">
|
|
|
|
<div ng-repeat="cell in controller.getCellStyles()"
|
|
|
|
style="position: absolute; border: 1px gray solid; background: black;"
|
|
|
|
ng-style="cell">
|
|
|
|
</div>
|
|
|
|
</span>
|
2015-01-16 02:48:11 +00:00
|
|
|
|
2015-02-19 03:41:27 +00:00
|
|
|
<!-- Fixed position elements -->
|
2015-02-20 00:24:45 +00:00
|
|
|
<mct-include ng-repeat="element in controller.getElements()"
|
2015-02-18 21:19:59 +00:00
|
|
|
style="position: absolute;"
|
|
|
|
key="element.template"
|
2015-02-20 23:02:16 +00:00
|
|
|
parameters="{ gridSize: controller.getGridSize() }"
|
2015-02-19 03:51:42 +00:00
|
|
|
ng-class="{ test: controller.selected(element) }"
|
2015-02-19 03:41:27 +00:00
|
|
|
ng-style="element.style"
|
|
|
|
ng-click="controller.select(element)"
|
2015-02-19 04:29:54 +00:00
|
|
|
ng-model="element"
|
|
|
|
mct-drag-down="controller.startDrag(element); controller.select(element)"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
2015-02-18 21:19:59 +00:00
|
|
|
</mct-include>
|
2015-01-15 01:48:57 +00:00
|
|
|
</div>
|