Just adding semicolons to make the linter happy

This commit is contained in:
Lee Grey 2015-03-24 22:33:14 +13:00
parent c9b581f6db
commit 93deb1c2c5
4 changed files with 5 additions and 6 deletions

View File

@ -138,11 +138,11 @@
ns.PublicPiskelController.prototype.setSavePath = function (savePath) {
this.piskelController.piskel.savePath = savePath;
}
};
ns.PublicPiskelController.prototype.getSavePath = function () {
return this.piskelController.piskel.savePath;
}
};
ns.PublicPiskelController.prototype.raiseSaveStateEvent_ = function (fn, args) {
$.publish(Events.PISKEL_SAVE_STATE, {

View File

@ -153,8 +153,8 @@
};
ns.SaveController.prototype.saveFileDesktop_ = function () {
pskl.app.desktopStorageService.saveFile();
}
pskl.app.desktopStorageService.save();
};
ns.SaveController.prototype.getName = function () {
return this.nameInput.val();

View File

@ -48,7 +48,6 @@
return this.getSampleRenderer_().getOffset();
};
ns.CompositeRenderer.prototype.setGridWidth = function (b) {
this.renderers.forEach(function (renderer) {
renderer.setGridWidth(b);

View File

@ -55,7 +55,7 @@
this.onSaveSuccess_();
this.piskelController.setSavePath(selectedSavePath);
}.bind(this));
}
};
ns.DesktopStorageService.prototype.onSaveSuccess_ = function () {
$.publish(Events.CLOSE_SETTINGS_DRAWER);