misuzu/assets/misuzu.js/comments/init.js
2025-02-16 00:19:42 +00:00

11 lines
319 B
JavaScript

#include comments/section.jsx
const MszCommentsInit = () => {
const targets = Array.from($queryAll('.js-comments'));
for(const target of targets) {
const section = new MszCommentsSection({
category: target.dataset.category,
});
target.replaceWith(section.element);
}
};