mirror of
https://github.com/nasa/openmct.git
synced 2025-05-31 22:50:49 +00:00
[Time Conductor] Begin adding custom date picker
WTD-1515
This commit is contained in:
parent
9ebf157ec0
commit
6f28ab0145
@ -54,6 +54,10 @@
|
||||
{
|
||||
"key": "time-controller",
|
||||
"templateUrl": "templates/controls/time-controller.html"
|
||||
},
|
||||
{
|
||||
"key": "datetime-picker",
|
||||
"templateUrl": "templates/controls/datetime-picker.html"
|
||||
}
|
||||
],
|
||||
"controllers": [
|
||||
|
@ -0,0 +1,51 @@
|
||||
<!--
|
||||
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.
|
||||
-->
|
||||
|
||||
<div>
|
||||
<div>
|
||||
<a><</a>
|
||||
March 2016
|
||||
<a>></a>
|
||||
</div>
|
||||
<div>
|
||||
<table>
|
||||
<tr>
|
||||
<th ng-repeat="day in ['Su','Mo','Tu','We','Th','Fr','Sa']">
|
||||
{{day}}
|
||||
</th>
|
||||
</tr>
|
||||
<tr ng-repeat="wk in [0,1,2,3,4,5]">
|
||||
<td ng-repeat="d in [0,1,2,3,4,5,6]">
|
||||
<div>{{wk + d}}</div>
|
||||
<div>{{wk * d}}</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div ng-repeat="name in ['Hour', 'Min', 'Sec']">
|
||||
<div>{{name}}</div>
|
||||
<select size="12"
|
||||
ng-model="ngModel.hours"
|
||||
ng-options="i for i in [0,1,2,3,4,5,6,7,8,9,10,11,12,13]">
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
Loading…
x
Reference in New Issue
Block a user