[Formatting] Fix styling errors

This commit is contained in:
David Hudson
2016-09-03 14:02:19 +09:00
parent 92bfea1773
commit 26c14d2bca
2 changed files with 6 additions and 6 deletions

View File

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