mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
18 lines
558 B
JavaScript
18 lines
558 B
JavaScript
export function initializeListenersForNavDropdowns() {
|
|
document.addEventListener("turbolinks:load", function () {
|
|
const schoolDropdown = document.querySelector("#select-school");
|
|
if (schoolDropdown) {
|
|
document
|
|
.querySelector("#select-school")
|
|
.addEventListener("change", (event) => {
|
|
window.location = event.target.value;
|
|
});
|
|
|
|
document
|
|
.querySelector("#select-district")
|
|
.addEventListener("change", (event) => {
|
|
window.location = event.target.value;
|
|
});
|
|
}
|
|
});
|
|
}
|