mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
12 lines
434 B
JavaScript
12 lines
434 B
JavaScript
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;
|
|
});
|
|
}
|
|
});
|