[Tree] Show root for most trees

Modify tree so that it includes its root in most cases, for
WTD-922.
This commit is contained in:
Victor Woeltjen
2015-03-18 10:30:36 -07:00
parent bb4ea2d4ae
commit d863c2843c
5 changed files with 52 additions and 19 deletions

View File

@@ -0,0 +1,14 @@
<ul class="tree">
<li ng-if="!composition">
<span class="tree-item">
<span class="icon wait-spinner"></span>
<span class="title-label">Loading...</span>
</span>
</li>
<li ng-repeat="child in composition">
<mct-representation key="'tree-node'"
mct-object="child"
ng-model="ngModel">
</mct-representation>
</li>
</ul>

View File

@@ -1,13 +1,7 @@
<ul class="tree">
<li ng-if="!composition">
<span class="tree-item">
<span class="icon wait-spinner"></span>
<span class="title-label">Loading...</span>
</span>
</li>
<li ng-repeat="child in composition">
<li>
<mct-representation key="'tree-node'"
mct-object="child"
mct-object="domainObject"
ng-model="ngModel">
</mct-representation>
</li>