File clean up and bug fixes

This commit is contained in:
Lucas Patenaude
2024-04-24 00:11:19 -06:00
parent 718a02e98f
commit cc280e1a87
9 changed files with 20 additions and 69 deletions

View File

@@ -43,6 +43,7 @@
img {
width: 28px;
height: auto;
max-height: 30px;
margin: 0 4px;
cursor: pointer;

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 MiB

View File

@@ -1,37 +0,0 @@
const league_select = document.getElementById('league_dropdown');
const team_select = document.getElementById('team_dropdown');
document.addEventListener("DOMContentLoaded", function() {
league_select.addEventListener('change', updateTeamSelect);
function updateTeamSelect() {
var selectedLeague = league_select.value;
team_select.innerHTML = "";
console.log(selectedLeague);
// Add options based on the selected value from the first select element
if (selectedLeague === "La Liga") {
// Add options for La Liga
console.log("Hello");
addOption(team_select, "Option 1 for LL", "option1A");
addOption(team_select, "Option 2 for LL", "option2A");
} else if (selectedLeague === "Serie A") {
// Add options for Serie A
addOption(team_select, "Team 1 in Serie A", "option1B");
addOption(team_select, "Team 2 in Serie A", "option2B");
} else if (selectedLeague === "Bundesliga") {
// Add options for Bundesliga
addOption(team_select, "Option 1 for Bun", "option1C");
addOption(team_select, "Option 2 for Bun", "option2C");
}
}
function addOption(selectElement, text, value) {
var option = document.createElement("option");
option.text = text;
option.value = value;
selectElement.add(option);
}
});