Allow for people to change accomodation

This commit is contained in:
Julien Lengrand-Lambert
2018-03-04 18:55:39 +01:00
parent 8749edca44
commit 3590a3100c

View File

@@ -107,26 +107,30 @@
function iWantHotel(){
accommodation = "hotel";
console.log("Hotel it is!");
changeAccomodations(true);
// changeAccomodations(true);
document.getElementById("sharingroomwith").disabled = false;
}
function iWantVenue(){
accommodation = "venue";
console.log("venue it is!");
changeAccomodations(true);
// changeAccomodations(true);
document.getElementById("sharingroomwith").disabled = true;
}
function iWantNothing(){
accommodation = "nothing";
console.log("nothing it is!");
changeAccomodations(true);
// changeAccomodations(true);
document.getElementById("sharingroomwith").disabled = true;
}
function iWantCamping() {
accommodation = "camping";
console.log("Camping it is!");
changeAccomodations(true);
// changeAccomodations(true);
document.getElementById("sharingroomwith").disabled = true;
}
function sorryMessage(){