ca427e0853
Fixed error raised by closure compiler Added es3 option to jshint (detect trailing commas) Added curly option to jshint (missing curly braces for if/for blocks) Removed trailing whitespaces (not enforced through jshint though)
28 lines
No EOL
831 B
JavaScript
28 lines
No EOL
831 B
JavaScript
(function () {
|
|
var ns = $.namespace("pskl.service");
|
|
ns.HistoryService = function (piskelController) {
|
|
this.piskelController = piskelController;
|
|
};
|
|
|
|
ns.HistoryService.prototype.init = function () {
|
|
|
|
$.subscribe(Events.TOOL_RELEASED, this.saveState.bind(this));
|
|
$.subscribe(Events.UNDO, this.undo.bind(this));
|
|
$.subscribe(Events.REDO, this.redo.bind(this));
|
|
};
|
|
|
|
ns.HistoryService.prototype.saveState = function () {
|
|
this.piskelController.getCurrentFrame().saveState();
|
|
};
|
|
|
|
ns.HistoryService.prototype.undo = function () {
|
|
this.piskelController.getCurrentFrame().loadPreviousState();
|
|
$.publish(Events.FRAMESHEET_RESET);
|
|
};
|
|
|
|
ns.HistoryService.prototype.redo = function () {
|
|
this.piskelController.getCurrentFrame().loadNextState();
|
|
$.publish(Events.FRAMESHEET_RESET);
|
|
};
|
|
|
|
})(); |