MAJOR: Updates for Authenticated Web UI and CLI #30

Open
coolaj86 wants to merge 77 commits from next into master
1 changed files with 10 additions and 7 deletions
Showing only changes of commit 08c18b8c94 - Show all commits

View File

@ -260,9 +260,8 @@ var appStates = {
appData.views.section = { otp: true };
}
, status: function () {
appData.views.section = { status: true };
var tok = setInterval(function () {
api.status().then(function (status) {
function updateStatus() {
return api.status().then(function (status) {
var wilddomains = [];
var rootdomains = [];
var subdomains = [];
@ -294,11 +293,15 @@ var appStates = {
appData.newHttp.name = (appData.status.wildDomains[0] || {}).name;
appData.state.ssh = (appData.status.ssh > 0) && appData.status.ssh || undefined;
});
}, 2000);
}
var tok = setInterval(updateStatus, 2000);
return updateStatus().then(function () {
appData.views.section = { status: true };
return function cancelState() {
clearInterval(tok);
};
});
}
};