Finished most of the front end stuff.

Need to fix release file downloads
This commit is contained in:
Tim Shannon
2016-04-18 20:11:22 +00:00
parent e0bc90e954
commit 7082d69bab
2 changed files with 8 additions and 12 deletions

View File

@ -125,8 +125,10 @@ Ractive.DEBUG = false;
function setStatus(project) {
//statuses
if (project.lastLog.version.trim() == project.releaseVersion.trim()) {
project.status = "Success";
if (project.stage != "waiting") {
project.status = project.stage;
} else if (project.lastLog.version.trim() == project.releaseVersion.trim()) {
project.status = "Successfully Released";
} else {
if (project.lastLog.stage == "loading") {
project.status = "Load Failing";