mirror of
https://github.com/nasa/openmct.git
synced 2025-06-13 04:38:15 +00:00
[Frontend] Fix plot image cutoff on export
The images were being cutoff due to the "top" attribute of .gl-plot not changing when the buttons were hidden. The buttons are now hidden by CSS class rather than ng-show, which makes updating the .gl-plot top attribute easier.
This commit is contained in:
@ -20,8 +20,9 @@
|
||||
at runtime from the About dialog for additional information.
|
||||
-->
|
||||
<span ng-controller="PlotController as plot"
|
||||
class="abs holder holder-plot">
|
||||
<span class="l-btn-set" ng-show="!plot.hideExportButtons">
|
||||
class="abs holder holder-plot"
|
||||
ng-class="{'hide-l-btn-set': plot.hideExportButtons}">
|
||||
<span class="l-btn-set">
|
||||
<a class="s-button t-export icon-download labeled first"
|
||||
ng-click="plot.exportJPG()"
|
||||
title="Export This View's Data as JPG">
|
||||
|
Reference in New Issue
Block a user