Finished most of the front end stuff.
Need to fix release file downloads
This commit is contained in:
@ -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";
|
||||
|
Reference in New Issue
Block a user