Implemented Applying to jobs. Working on Purchasing Servers

This commit is contained in:
Daniel Xie
2017-02-03 16:05:59 -06:00
parent afda3338bd
commit fc2dc82f1a
11 changed files with 537 additions and 126 deletions
+42
View File
@@ -0,0 +1,42 @@
/* Pop up Yes/No Box */
function purchaseServerBoxInit() {
if (Engine.Debug) {
console.log("Purchase Server box Initialized");
}
var cancelButton = document.getElementById("purchase-server-box-cancel");
//Close Dialog box
cancelButton.addEventListener("click", function() {
purchaseServerBoxClose();
return false;
});
};
document.addEventListener("DOMContentLoaded", purchaseServerBoxInit, false);
purchaseServerBoxClose = function() {
var purchaseServerBox = document.getElementById("purchase-server-box-container");
purchaseServerBox.style.display = "none";
}
purchaseServerBoxOpen = function() {
var purchaseServerBox = document.getElementById("purchase-server-box-container");
purchaseServerBox.style.display = "block";
}
purchaseServerBoxSetText = function(txt) {
var purchaseServerBox = document.getElementById("purchase-server-box-text");
purchaseServerBox.innerHTML = txt;
}
//ram argument is in GB
purchaseServerBoxCreate = function(ram, cost) {
purchaseServerBoxSetText("Would you like to purchase a new server with " + ram + "GB of RAM for $" + cost + "?" );
var confirmButton = document.getElementById("purchase-server-box-confirm");
confirmButton.addEventListener("click", function() {
purchaseServer(ram, cost);
});
purchaseServerBoxOpen();
}