mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
Fix : Online save failing
This commit is contained in:
@@ -113,7 +113,7 @@
|
|||||||
|
|
||||||
this.beforeSaving_();
|
this.beforeSaving_();
|
||||||
|
|
||||||
this.saveOnlineButton.attr('disabled', true);
|
this.saveOnlineButton.setAttribute('disabled', true);
|
||||||
this.saveOnlineStatus.innerHTML = 'Saving ...';
|
this.saveOnlineStatus.innerHTML = 'Saving ...';
|
||||||
|
|
||||||
pskl.app.storageService.store({
|
pskl.app.storageService.store({
|
||||||
@@ -205,7 +205,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
ns.SaveController.prototype.afterOnlineSaving_ = function () {
|
ns.SaveController.prototype.afterOnlineSaving_ = function () {
|
||||||
this.saveOnlineButton.attr('disabled', false);
|
this.saveOnlineButton.setAttribute('disabled', false);
|
||||||
this.saveOnlineStatus.innerHTML = '';
|
this.saveOnlineStatus.innerHTML = '';
|
||||||
this.afterSaving_();
|
this.afterSaving_();
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user