mirror of
https://github.com/nasa/openmct.git
synced 2025-02-04 18:20:43 +00:00
218ef16160
Implemented auto-scrolling historical imagery view in ImageryController. Imagery domain objects now request historical data on each manual bounds change. Added new specs for ensuring that historical data is requested on bounds change and duplicate bounds / datum are ignored.
9 lines
338 B
HTML
9 lines
338 B
HTML
|
|
<div class="l-image-thumbs-wrapper" ng-controller="ImageryController as imagery">
|
|
<div class="l-image-thumb-item" ng-repeat="image in imageHistory track by $index">
|
|
<img class="l-thumb" ng-init="imagery.scrollToRight()"
|
|
ng-src={{imagery.getImageUrl(image)}} >
|
|
<div class="l-time">{{imagery.getTime(image)}}</div>
|
|
</div>
|
|
</div>
|