mirror of
https://github.com/nasa/openmct.git
synced 2025-06-14 21:28:12 +00:00
[Formatting] Fix styling errors
This commit is contained in:
@ -375,7 +375,7 @@ define(
|
||||
PlotController.prototype.exportPDF = function () {
|
||||
var self = this;
|
||||
self.hideExportButtons = true;
|
||||
self.ExportImageService.exportPDF(self.$element[0], "plot.pdf", function() {
|
||||
self.ExportImageService.exportPDF(self.$element[0], "plot.pdf", function () {
|
||||
self.hideExportButtons = false;
|
||||
});
|
||||
};
|
||||
@ -386,7 +386,7 @@ define(
|
||||
PlotController.prototype.exportPNG = function () {
|
||||
var self = this;
|
||||
self.hideExportButtons = true;
|
||||
self.ExportImageService.exportPNG(self.$element[0], "plot.png", function() {
|
||||
self.ExportImageService.exportPNG(self.$element[0], "plot.png", function () {
|
||||
self.hideExportButtons = false;
|
||||
});
|
||||
};
|
||||
@ -397,7 +397,7 @@ define(
|
||||
PlotController.prototype.exportJPG = function () {
|
||||
var self = this;
|
||||
self.hideExportButtons = true;
|
||||
self.ExportImageService.exportJPG(self.$element[0], "plot.jpg", function() {
|
||||
self.ExportImageService.exportJPG(self.$element[0], "plot.jpg", function () {
|
||||
self.hideExportButtons = false;
|
||||
});
|
||||
};
|
||||
|
Reference in New Issue
Block a user