2015-11-05 20:45:51 +00:00
|
|
|
<!--
|
2016-07-12 23:21:58 +00:00
|
|
|
Open MCT, Copyright (c) 2009-2016, United States Government
|
2015-11-05 20:45:51 +00:00
|
|
|
as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
Administration. All rights reserved.
|
|
|
|
|
2016-07-12 23:21:58 +00:00
|
|
|
Open MCT is licensed under the Apache License, Version 2.0 (the
|
2015-11-05 20:45:51 +00:00
|
|
|
"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.
|
|
|
|
|
2016-07-12 23:21:58 +00:00
|
|
|
Open MCT includes source code licensed under additional open source
|
2015-11-05 20:45:51 +00:00
|
|
|
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.
|
|
|
|
-->
|
2020-11-02 20:35:43 +00:00
|
|
|
<div class="c-timer u-style-receiver js-style-receiver is-{{timer.timerState}}" ng-controller="TimerController as timer">
|
2018-12-24 22:02:37 +00:00
|
|
|
<div class="c-timer__controls">
|
|
|
|
<button ng-click="timer.clickStopButton()"
|
|
|
|
ng-hide="timer.timerState == 'stopped'"
|
|
|
|
title="Reset"
|
2019-03-21 22:07:16 +00:00
|
|
|
class="c-timer__ctrl-reset c-icon-button c-icon-button--major icon-reset"></button>
|
2018-12-24 22:02:37 +00:00
|
|
|
<button ng-click="timer.clickButton()"
|
|
|
|
title="{{timer.buttonText()}}"
|
2019-03-21 22:07:16 +00:00
|
|
|
class="c-timer__ctrl-pause-play c-icon-button c-icon-button--major {{timer.buttonCssClass()}}"></button>
|
2018-12-24 22:02:37 +00:00
|
|
|
</div>
|
|
|
|
<div class="c-timer__direction {{timer.signClass()}}"
|
|
|
|
ng-hide="!timer.signClass()"></div>
|
|
|
|
<div class="c-timer__value">{{timer.text() || "--:--:--"}}
|
2015-09-14 23:45:38 +00:00
|
|
|
</div>
|
2018-12-24 22:02:37 +00:00
|
|
|
<span class="c-timer__ng-controller u-contents" ng-controller="RefreshingController"></span>
|
2017-04-05 21:35:12 +00:00
|
|
|
</div>
|