mirror of
https://github.com/nasa/openmct.git
synced 2025-06-14 21:28:12 +00:00
[Formatting] Switched to double quote across the board for consistency
This commit is contained in:
@ -373,21 +373,21 @@ define(
|
||||
* Export the plot to PDF
|
||||
*/
|
||||
PlotController.prototype.exportPDF = function () {
|
||||
this.ExportImageService.exportPDF(this.$element[0], 'plot.pdf');
|
||||
this.ExportImageService.exportPDF(this.$element[0], "plot.pdf");
|
||||
};
|
||||
|
||||
/**
|
||||
* Export the plot to PNG
|
||||
*/
|
||||
PlotController.prototype.exportPNG = function () {
|
||||
this.ExportImageService.exportPNG(this.$element[0], 'plot.png');
|
||||
this.ExportImageService.exportPNG(this.$element[0], "plot.png");
|
||||
};
|
||||
|
||||
/**
|
||||
* Export the plot to JPG
|
||||
*/
|
||||
PlotController.prototype.exportJPG = function () {
|
||||
this.ExportImageService.exportJPG(this.$element[0], 'plot.jpg');
|
||||
this.ExportImageService.exportJPG(this.$element[0], "plot.jpg");
|
||||
};
|
||||
|
||||
return PlotController;
|
||||
|
Reference in New Issue
Block a user