add new block dialog to scheduler

This commit is contained in:
Sundog Jones 2024-09-22 11:18:22 -04:00
parent 285180957a
commit 2afd5e27bf
1 changed files with 5 additions and 0 deletions

View File

@ -808,6 +808,11 @@
response.json().then((json) => {
// TODO: populate schedule grid
// add event handlers
const block_cells = document.querySelectorAll(".schedule_grid_program_cell");
block_cells.forEach((cell) => {
cell.addEventListener("click", schedule_grid_click_handler);
});
});
}
});