Fix : Online save failing
This commit is contained in:
parent
aa79919496
commit
16362e1b13
1 changed files with 2 additions and 2 deletions
|
@ -113,7 +113,7 @@
|
|||
|
||||
this.beforeSaving_();
|
||||
|
||||
this.saveOnlineButton.attr('disabled', true);
|
||||
this.saveOnlineButton.setAttribute('disabled', true);
|
||||
this.saveOnlineStatus.innerHTML = 'Saving ...';
|
||||
|
||||
pskl.app.storageService.store({
|
||||
|
@ -205,7 +205,7 @@
|
|||
};
|
||||
|
||||
ns.SaveController.prototype.afterOnlineSaving_ = function () {
|
||||
this.saveOnlineButton.attr('disabled', false);
|
||||
this.saveOnlineButton.setAttribute('disabled', false);
|
||||
this.saveOnlineStatus.innerHTML = '';
|
||||
this.afterSaving_();
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue