mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
2809a551d7
In the GIF export panel, user can now choose between : - export online (previous 'upload' feature) - download GIF Labels have been updated in the PNG export panel to follow the same convention. CanvasToBlob library was modified and moved to dedicated utils to handle not only canvas, but also any base64 dateURI.
13 lines
375 B
JavaScript
13 lines
375 B
JavaScript
(function () {
|
|
var ns = $.namespace('pskl.service');
|
|
|
|
ns.GithubStorageService = function (piskelController) {
|
|
this.piskelController = piskelController;
|
|
};
|
|
|
|
ns.GithubStorageService.prototype.init = function () {};
|
|
|
|
ns.GithubStorageService.prototype.store = function (callbacks) {
|
|
throw "Github save is no longer available. Use local save instead";
|
|
};
|
|
})(); |