|
| 1 | +<!-- |
| 2 | + Open MCT Web, Copyright (c) 2014-2015, United States Government |
| 3 | + as represented by the Administrator of the National Aeronautics and Space |
| 4 | + Administration. All rights reserved. |
| 5 | +
|
| 6 | + Open MCT Web is licensed under the Apache License, Version 2.0 (the |
| 7 | + "License"); you may not use this file except in compliance with the License. |
| 8 | + You may obtain a copy of the License at |
| 9 | + http://www.apache.org/licenses/LICENSE-2.0. |
| 10 | +
|
| 11 | + Unless required by applicable law or agreed to in writing, software |
| 12 | + distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | + WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | + License for the specific language governing permissions and limitations |
| 15 | + under the License. |
| 16 | +
|
| 17 | + Open MCT Web includes source code licensed under additional open source |
| 18 | + licenses. See the Open Source Licenses file (LICENSES.md) included with |
| 19 | + this source code distribution or the Licensing information page available |
| 20 | + at runtime from the About dialog for additional information. |
| 21 | +--> |
| 22 | +<div class="contents"> |
| 23 | + <div class="pane left menu-items"> |
| 24 | + <ul> |
| 25 | + <li ng-click="representation.mode='fixed'"> |
| 26 | + <a |
| 27 | + ng-mouseover="representation.activeMetadata = { |
| 28 | + glyph: '\ue604', |
| 29 | + name: 'Fixed Time-Span', |
| 30 | + description: 'Display data that falls between two fixed dates' |
| 31 | + }" |
| 32 | + ng-mouseleave="representation.activeMetadata = undefined"> |
| 33 | + <span class="ui-symbol icon type-icon"> |
| 34 | +  |
| 35 | + </span> |
| 36 | + Fixed Time-span |
| 37 | + </a> |
| 38 | + </li> |
| 39 | + <li ng-click="representation.mode='realtime'"> |
| 40 | + <a |
| 41 | + ng-mouseover="representation.activeMetadata = { |
| 42 | + glyph: '\u0043', |
| 43 | + name: 'Real-time Mode', |
| 44 | + description: 'Monitor real-time streaming data as it comes in to the application. The Time Conductor will automatically advance itself based on a UTC clock.' |
| 45 | + }" |
| 46 | + ng-mouseleave="representation.activeMetadata = undefined"> |
| 47 | + <span class="ui-symbol icon type-icon"> |
| 48 | + C |
| 49 | + </span> |
| 50 | + Real-time |
| 51 | + </a> |
| 52 | + </li> |
| 53 | + <li ng-click="representation.mode='latest'"> |
| 54 | + <a |
| 55 | + ng-mouseover="representation.activeMetadata = { |
| 56 | + glyph: '\u0044', |
| 57 | + name: 'Latest Available Data', |
| 58 | + description: 'Monitor real-time streaming data as it comes in to the application. In contrast to real-time mode the time conductor will only advance when data becomes available.' |
| 59 | + }" |
| 60 | + ng-mouseleave="representation.activeMetadata = undefined"> |
| 61 | + <span class="ui-symbol icon type-icon"> |
| 62 | + D |
| 63 | + </span> |
| 64 | + Latest Available Data |
| 65 | + </a> |
| 66 | + </li> |
| 67 | + </ul> |
| 68 | + </div> |
| 69 | + <div class="pane right menu-item-description"> |
| 70 | + <div class="desc-area ui-symbol icon type-icon"> |
| 71 | + {{representation.activeMetadata.glyph}} |
| 72 | + </div> |
| 73 | + <div class="desc-area title"> |
| 74 | + {{representation.activeMetadata.name}} |
| 75 | + </div> |
| 76 | + <div class="desc-area description"> |
| 77 | + {{representation.activeMetadata.description}} |
| 78 | + </div> |
| 79 | + </div> |
| 80 | +</div> |
0 commit comments