12 lines
391 B
JavaScript
12 lines
391 B
JavaScript
window.addEventListener("load", () => {
|
|
document.querySelector("button.new").addEventListener("click", () => {
|
|
window.location.href = "new/"
|
|
})
|
|
|
|
document.querySelectorAll(".list li").forEach(row => {
|
|
let id = row.dataset.id
|
|
row.querySelector("button.edit").addEventListener("click", () => {
|
|
window.location.href = `${id}/`
|
|
})
|
|
})
|
|
}) |