diff --git a/package.json b/package.json index 3614e6f..5d40150 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Ghost-Updater-Azure", - "version": "0.6.0", + "version": "0.6.1", "private": false, "main": "index.html", "maintainers": [ diff --git a/updater_client/backup.js b/updater_client/backup.js index 0595ff6..a17a92e 100644 --- a/updater_client/backup.js +++ b/updater_client/backup.js @@ -123,11 +123,14 @@ UpdaterClient.backup = { self.backupFinished = true; setTimeout(function() { - UpdaterClient.updater.startInstallation(); - self.scriptLogTitle.hide(); - self.bScriptLogArea.hide(); - self.bScriptLog.empty(); - $('#backupOutputArea').empty(); + UpdaterClient.updater.startInstallation(); + self.bScriptLogArea.hide(); + self.scriptLogTitle.hide(); + self.bScriptLog.empty(); + clearTimeout(self.timerYellow); + clearTimeout(self.timerRed); + UpdaterClient.utils.timerButton('grey'); + $('#backupOutputArea').empty(); }, 300); } diff --git a/updater_client/updater.js b/updater_client/updater.js index ec220ec..88b23bb 100644 --- a/updater_client/updater.js +++ b/updater_client/updater.js @@ -125,6 +125,9 @@ UpdaterClient.updater = { self.scriptLogArea.hide(); self.scriptLogTitle.hide(); self.scriptLog.empty(); + UpdaterClient.utils.timerButton('grey'); + clearTimeout(self.timerYellow); + clearTimeout(self.timerRed); self.appendLog('All done, your blog has been updated!', false); self.updateFinished = true;