2015-09-15 20:08:05 +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-09-15 22:24:54 +00:00
|
|
|
<div ng-controller="DateTimePickerController">
|
2015-09-15 21:50:05 +00:00
|
|
|
<div style="vertical-align: top; display: inline-block">
|
|
|
|
<div style="text-align: center;">
|
2015-09-15 22:24:54 +00:00
|
|
|
<a ng-click="changeMonth(-1)"><</a>
|
|
|
|
{{month}} {{year}}
|
|
|
|
<a ng-click="changeMonth(1)">></a>
|
2015-09-15 21:50:05 +00:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th ng-repeat="day in ['Su','Mo','Tu','We','Th','Fr','Sa']">
|
|
|
|
{{day}}
|
|
|
|
</th>
|
|
|
|
</tr>
|
2015-09-15 22:24:54 +00:00
|
|
|
<tr ng-repeat="row in table">
|
2015-09-15 21:50:05 +00:00
|
|
|
<td style="text-align: center;"
|
2015-09-15 22:24:54 +00:00
|
|
|
ng-repeat="cell in row"
|
|
|
|
ng-class='{ disabled: !isSelectable(cell) }'>
|
|
|
|
<div>{{cell.day}}</div>
|
|
|
|
<div style="font-size: 80%">{{cell.dayOfYear}}</div>
|
2015-09-15 21:50:05 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
2015-09-15 20:08:05 +00:00
|
|
|
</div>
|
2015-09-15 21:50:05 +00:00
|
|
|
<div style="vertical-align: top; display: inline-block"
|
2015-09-15 22:24:54 +00:00
|
|
|
ng-repeat="key in ['hours', 'minutes', 'seconds']"
|
|
|
|
ng-if="parameters[key]">
|
|
|
|
<div>{{nameFor(key)}}</div>
|
2015-09-15 21:50:05 +00:00
|
|
|
<select size="10"
|
2015-09-15 22:24:54 +00:00
|
|
|
ng-model="time[key]"
|
2015-09-15 20:08:05 +00:00
|
|
|
ng-options="i for i in [0,1,2,3,4,5,6,7,8,9,10,11,12,13]">
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|