2015-05-13 23:42:35 +00:00
|
|
|
<!--
|
|
|
|
Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
|
|
as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
Administration. All rights reserved.
|
|
|
|
|
|
|
|
Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
License for the specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
|
|
|
|
Open MCT Web includes source code licensed under additional open source
|
|
|
|
licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
|
|
this source code distribution or the Licensing information page available
|
|
|
|
at runtime from the About dialog for additional information.
|
|
|
|
-->
|
2014-11-24 15:49:50 +00:00
|
|
|
<span ng-controller="ToggleController as toggle">
|
2014-11-24 18:30:45 +00:00
|
|
|
<span ng-controller="TreeNodeController as treeNode">
|
2015-03-20 23:37:42 +00:00
|
|
|
<span
|
2015-12-17 01:32:43 +00:00
|
|
|
class="tree-item menus-to-left"
|
2015-09-18 18:01:54 +00:00
|
|
|
ng-class="{selected: treeNode.isSelected()}"
|
|
|
|
>
|
|
|
|
<span
|
2015-12-16 02:17:06 +00:00
|
|
|
class='ui-symbol view-control flex-elem'
|
|
|
|
ng-class="{ 'has-children': model.composition !== undefined, expanded: toggle.isActive() }"
|
2015-09-18 18:01:54 +00:00
|
|
|
ng-click="toggle.toggle(); treeNode.trackExpansion()"
|
|
|
|
>
|
|
|
|
</span>
|
2015-08-20 23:11:45 +00:00
|
|
|
<mct-representation
|
2015-12-17 01:32:43 +00:00
|
|
|
class="rep-object-label"
|
2015-07-21 20:29:45 +00:00
|
|
|
key="'label'"
|
2015-09-18 18:01:54 +00:00
|
|
|
mct-object="domainObject"
|
2015-09-21 17:53:45 +00:00
|
|
|
ng-click="treeNode.select()"
|
2015-09-18 18:01:54 +00:00
|
|
|
>
|
2014-11-24 18:30:45 +00:00
|
|
|
</mct-representation>
|
|
|
|
</span>
|
2015-03-20 23:37:42 +00:00
|
|
|
<span
|
2015-08-06 21:52:42 +00:00
|
|
|
class="tree-item-subtree"
|
|
|
|
ng-show="toggle.isActive()"
|
|
|
|
ng-if="model.composition !== undefined"
|
|
|
|
>
|
2014-11-24 18:30:45 +00:00
|
|
|
|
2015-03-18 17:44:40 +00:00
|
|
|
<mct-representation key="'subtree'"
|
2014-12-03 21:18:51 +00:00
|
|
|
ng-model="ngModel"
|
2015-09-21 17:53:45 +00:00
|
|
|
parameters="parameters"
|
2014-11-24 23:10:29 +00:00
|
|
|
mct-object="treeNode.hasBeenExpanded() && domainObject">
|
2014-11-24 18:30:45 +00:00
|
|
|
</mct-representation>
|
|
|
|
|
|
|
|
</span>
|
2014-11-23 23:41:20 +00:00
|
|
|
</span>
|
2015-09-18 18:01:54 +00:00
|
|
|
</span>
|