mirror of
https://github.com/nasa/openmct.git
synced 2024-12-30 09:58:52 +00:00
e04b9828ea
Use ng-model when communicating state to/from the tree in browse mode. This will simplify implementation of the Locator control, which also uses a tree, but which should not set navigation state. WTD-593.
25 lines
1.2 KiB
HTML
25 lines
1.2 KiB
HTML
<div content="jquery-wrapper" class="abs holder-all browse-mode">
|
|
<mct-include key="'topbar-browse'"></mct-include>
|
|
<div class="holder browse-area outline abs" ng-controller="BrowseController">
|
|
<div class='split-layout vertical contents abs'>
|
|
<div class='split-pane-component treeview pane' style="width: 200px;">
|
|
<mct-representation key="'create-button'" mct-object="navigatedObject">
|
|
</mct-representation>
|
|
<div class='holder tree-holder abs'>
|
|
<mct-representation key="'tree'"
|
|
mct-object="domainObject"
|
|
ng-model="treeModel">
|
|
</mct-representation>
|
|
</div>
|
|
</div>
|
|
<div class="splitter" style="left: 200px"></div>
|
|
<div class='split-pane-component items pane' style="right:0; left:200px;">
|
|
<div class='holder abs' id='content-area'>
|
|
<mct-representation mct-object="navigatedObject" key="'browse-object'">
|
|
</mct-representation>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<mct-include key="'bottombar'"></mct-include>
|
|
</div> |