mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
14 lines
512 B
JavaScript
14 lines
512 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;
|
|
});
|
|
}
|
|
});
|
|
}
|