[Formatting] Linting

This commit is contained in:
David Hudson
2016-09-02 03:11:26 +09:00
parent a8900f3d6d
commit 3a19890be9
3 changed files with 21 additions and 16 deletions

View File

@ -258,15 +258,15 @@ define(
new PlotAxis("ranges", [], AXIS_DEFAULTS[1])
];
$scope.exportPDF = function() {
$scope.exportPDF = function () {
PlotController.prototype.exportPDF(self.$element, 'plot.pdf');
};
$scope.exportPNG = function() {
$scope.exportPNG = function () {
PlotController.prototype.exportPNG(self.$element, 'plot.png');
};
$scope.exportJPG = function() {
$scope.exportJPG = function () {
PlotController.prototype.exportJPG(self.$element, 'plot.jpg');
};