mirror of
https://github.com/nasa/openmct.git
synced 2024-12-26 16:21:06 +00:00
e400f211c4
Merge in preparation for review/integration, WTD-1427 Conflicts: platform/commonUI/general/res/templates/containers/accordion.html
70 lines
3.1 KiB
HTML
70 lines
3.1 KiB
HTML
<!--
|
|
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.
|
|
-->
|
|
<mct-representation key="'topbar-edit'"
|
|
mct-object="domainObject"
|
|
ng-model="representation">
|
|
</mct-representation>
|
|
<div class="holder edit-area abs">
|
|
<mct-split-pane class='contents abs' anchor='right'>
|
|
<div class='split-pane-component pane left edit-main'>
|
|
<mct-toolbar name="mctToolbar"
|
|
structure="toolbar.structure"
|
|
ng-model="toolbar.state">
|
|
</mct-toolbar>
|
|
<div class='holder abs object-holder work-area'>
|
|
<mct-representation key="representation.selected.key"
|
|
toolbar="toolbar"
|
|
mct-object="representation.selected.key && domainObject">
|
|
</mct-representation>
|
|
</div>
|
|
</div>
|
|
<mct-splitter></mct-splitter>
|
|
<div
|
|
class='split-pane-component pane right edit-objects menus-to-left'
|
|
ng-controller='EditPanesController as editPanes'
|
|
>
|
|
<mct-split-pane class='contents abs' anchor='bottom'>
|
|
<div
|
|
class="abs pane top accordion"
|
|
ng-controller="ToggleController as toggle"
|
|
>
|
|
<mct-container key="accordion" label="Library">
|
|
<mct-representation key="'tree'"
|
|
mct-object="editPanes.getRoot()">
|
|
</mct-representation>
|
|
</mct-container>
|
|
</div>
|
|
<mct-splitter></mct-splitter>
|
|
<div
|
|
class="abs pane bottom accordion"
|
|
ng-controller="ToggleController as toggle"
|
|
>
|
|
<mct-container key="accordion" label="Elements">
|
|
<mct-representation key="'edit-elements'" mct-object="domainObject">
|
|
</mct-representation>
|
|
</mct-container>
|
|
</div>
|
|
</mct-split-pane>
|
|
</div>
|
|
</mct-split-pane>
|
|
</div>
|