[Formatting] Switched to double quote across the board for consistency

This commit is contained in:
David Hudson
2016-09-02 11:58:15 +09:00
parent e370271093
commit 3e3d3ebcf9
2 changed files with 12 additions and 12 deletions

View File

@ -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;