Skip to content

Commit

Permalink
Update Teachers for other person
Browse files Browse the repository at this point in the history
  • Loading branch information
shanepaton committed Sep 5, 2023
1 parent 14492a1 commit 07ed33f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions projects/tempotable/fortnite/assets/js/fetchDay.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function fetchPeriodNormal() {
document.getElementById("period-5").style.backgroundColor = "#FFF8F0";

// FIX THIS FOR B DAYS!!!!!
document.getElementById("time-teacher").innerHTML = "E.Appleton";
document.getElementById("time-teacher").innerHTML = "R.Serblowski";

document.getElementById("time-mins").innerHTML = `${fetchTimeLeft(hour, min, 9,54)} Minutes Left`;
} else if (time >= 959 && time <= 1103) {
Expand All @@ -69,7 +69,7 @@ function fetchPeriodNormal() {
document.getElementById("period-3").style.backgroundColor = "#FFF8F0";
document.getElementById("period-4").style.backgroundColor = "#FFF8F0";
document.getElementById("period-5").style.backgroundColor = "#FFF8F0";
document.getElementById("time-teacher").innerHTML = "D.Buday";
document.getElementById("time-teacher").innerHTML = "L.Hemeon";
document.getElementById("time-mins").innerHTML = `${fetchTimeLeft(hour, min, 11,3)} Minutes Left`;
} else if (time >= 1103 && time <= 1113) {
period = 3;
Expand All @@ -90,7 +90,7 @@ function fetchPeriodNormal() {
document.getElementById("period-3").style.backgroundColor = "#FDE74C";
document.getElementById("period-4").style.backgroundColor = "#FFF8F0";
document.getElementById("period-5").style.backgroundColor = "#FFF8F0";
document.getElementById("time-teacher").innerHTML = "D.Humbert";
document.getElementById("time-teacher").innerHTML = "S.Schaan";

document.getElementById("time-mins").innerHTML = `${fetchTimeLeft(hour, min, 12,17)} Minutes Left`;
} else if (time >= 1217 && time <= 1307) {
Expand All @@ -112,7 +112,7 @@ function fetchPeriodNormal() {
document.getElementById("period-3").style.backgroundColor = "#88D18A";
document.getElementById("period-4").style.backgroundColor = "#FDE74C";
document.getElementById("period-5").style.backgroundColor = "#FFF8F0";
document.getElementById("time-teacher").innerHTML = "L.Truitt";
document.getElementById("time-teacher").innerHTML = "B.Thompson";

document.getElementById("time-mins").innerHTML = `${fetchTimeLeft(hour, min, 14,11)} Minutes Left`;
} else if (time >= 1411 && time <= 1520) {
Expand All @@ -123,7 +123,7 @@ function fetchPeriodNormal() {
document.getElementById("period-3").style.backgroundColor = "#88D18A";
document.getElementById("period-4").style.backgroundColor = "#88D18A";
document.getElementById("period-5").style.backgroundColor = "#FDE74C";
document.getElementById("time-teacher").innerHTML = "L.Truitt";
document.getElementById("time-teacher").innerHTML = "D.Humbert";
document.getElementById("time-mins").innerHTML = `${fetchTimeLeft(hour, min, 15,20)} Minutes Left`;
}else if (time >= 1520) {
period = 8;
Expand Down

0 comments on commit 07ed33f

Please sign in to comment.