mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
8018c8f42e
WTD-1048 Originally did a lot of this work in warp1048 by mistake This commit pulls in all /platform-only changes from that branch Mods are mostly related to WTD-1046 specifically, but also touch toolbar and buttons
35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
<span ng-controller="ToggleController as toggle">
|
|
<span ng-controller="TreeNodeController as treeNode">
|
|
<span
|
|
class="tree-item menus-to-left"
|
|
ng-class="{selected: treeNode.isSelected()}"
|
|
>
|
|
<span
|
|
class='ui-symbol view-control'
|
|
ng-click="toggle.toggle(); treeNode.trackExpansion()"
|
|
ng-if="model.composition !== undefined"
|
|
>
|
|
{{toggle.isActive() ? "v" : ">"}}
|
|
</span>
|
|
<mct-representation
|
|
key="'label'"
|
|
mct-object="domainObject"
|
|
ng-model="ngModel"
|
|
ng-click="ngModel.selectedObject = domainObject"
|
|
>
|
|
</mct-representation>
|
|
</span>
|
|
<span
|
|
class="tree-item-subtree"
|
|
ng-show="toggle.isActive()"
|
|
ng-if="model.composition !== undefined"
|
|
>
|
|
|
|
<mct-representation key="'subtree'"
|
|
ng-model="ngModel"
|
|
mct-object="treeNode.hasBeenExpanded() && domainObject">
|
|
</mct-representation>
|
|
|
|
</span>
|
|
</span>
|
|
</span> |