mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
Just adding semicolons to make the linter happy
This commit is contained in:
parent
c9b581f6db
commit
93deb1c2c5
@ -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, {
|
||||
|
@ -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();
|
||||
|
@ -48,7 +48,6 @@
|
||||
return this.getSampleRenderer_().getOffset();
|
||||
};
|
||||
|
||||
|
||||
ns.CompositeRenderer.prototype.setGridWidth = function (b) {
|
||||
this.renderers.forEach(function (renderer) {
|
||||
renderer.setGridWidth(b);
|
||||
|
@ -55,7 +55,7 @@
|
||||
this.onSaveSuccess_();
|
||||
this.piskelController.setSavePath(selectedSavePath);
|
||||
}.bind(this));
|
||||
}
|
||||
};
|
||||
|
||||
ns.DesktopStorageService.prototype.onSaveSuccess_ = function () {
|
||||
$.publish(Events.CLOSE_SETTINGS_DRAWER);
|
||||
|
Loading…
Reference in New Issue
Block a user