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.
|
|
|
|
-->
|
2015-07-15 23:49:16 +00:00
|
|
|
|
2015-08-21 01:36:44 +00:00
|
|
|
<div class="abs holder-all browse-mode" ng-controller="BrowseController">
|
2014-11-23 23:41:20 +00:00
|
|
|
<mct-include key="'topbar-browse'"></mct-include>
|
2015-09-18 00:03:35 +00:00
|
|
|
<div class="holder browse-area s-browse-area abs browse-wrapper"
|
2015-10-22 21:26:22 +00:00
|
|
|
ng-controller="PaneController as modelPaneTree"
|
|
|
|
ng-class="modelPaneTree.visible() ? 'browse-showtree' : 'browse-hidetree'">
|
|
|
|
<mct-split-pane class='contents abs'
|
|
|
|
anchor='left'>
|
2015-08-26 17:08:57 +00:00
|
|
|
<div class='split-pane-component treeview pane left'>
|
2015-09-18 00:03:35 +00:00
|
|
|
<div class="holder abs l-mobile">
|
2015-09-28 22:57:55 +00:00
|
|
|
<mct-representation key="'create-button'"
|
|
|
|
mct-object="navigatedObject"
|
|
|
|
mct-device="desktop">
|
2015-09-18 00:03:35 +00:00
|
|
|
</mct-representation>
|
|
|
|
<div class='holder search-holder abs'
|
|
|
|
ng-class="{active: treeModel.search}">
|
|
|
|
<mct-representation key="'search'"
|
|
|
|
mct-object="domainObject"
|
|
|
|
ng-model="treeModel">
|
|
|
|
</mct-representation>
|
|
|
|
</div>
|
|
|
|
<div class='tree-holder abs mobile-tree-holder'
|
|
|
|
ng-hide="treeModel.search">
|
|
|
|
<mct-representation key="'tree'"
|
|
|
|
mct-object="domainObject"
|
2015-09-21 17:53:45 +00:00
|
|
|
parameters="tree"
|
2015-09-18 00:03:35 +00:00
|
|
|
ng-model="treeModel">
|
|
|
|
</mct-representation>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-01-29 00:34:03 +00:00
|
|
|
</div>
|
2015-07-22 19:53:49 +00:00
|
|
|
|
2015-10-22 21:26:22 +00:00
|
|
|
<mct-splitter class="mobile-hide" ng-class="{ hidden: !modelPaneTree.visible()}"></mct-splitter>
|
2015-08-24 22:24:35 +00:00
|
|
|
|
2015-08-26 17:08:57 +00:00
|
|
|
<div class='split-pane-component items pane right-repr'>
|
2015-10-23 01:28:25 +00:00
|
|
|
<a class="mini-tab anchor-left toggle-pane toggle-tree" ng-click="modelPaneTree.toggle()"></a>
|
2015-10-22 21:26:22 +00:00
|
|
|
<div class='holder abs l-mobile' id='content-area' ng-controller="PaneController as modelPaneInspect">
|
2015-09-21 17:53:45 +00:00
|
|
|
<mct-representation mct-object="navigatedObject"
|
2015-10-22 21:26:22 +00:00
|
|
|
key="'browse-object'"
|
|
|
|
ng-model="modelPaneInspect">
|
2015-08-24 22:24:35 +00:00
|
|
|
</mct-representation>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-06-26 23:21:20 +00:00
|
|
|
</mct-split-pane>
|
2014-11-23 23:41:20 +00:00
|
|
|
</div>
|
|
|
|
<mct-include key="'bottombar'"></mct-include>
|
2015-06-26 23:21:20 +00:00
|
|
|
</div>
|
2015-07-22 19:53:49 +00:00
|
|
|
|