2024-03-22 07:30:22 +00:00
|
|
|
import "./main.js";
|
2024-03-18 10:34:43 +00:00
|
|
|
|
2024-08-01 23:53:19 +00:00
|
|
|
document.querySelectorAll("div.music").forEach(container => {
|
|
|
|
const link = container.querySelector(".music-title a").href
|
|
|
|
|
|
|
|
container.addEventListener("click", event => {
|
|
|
|
if (event.target.href) return;
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
location = link;
|
|
|
|
});
|
2024-03-18 10:34:43 +00:00
|
|
|
});
|