misuzu/assets/misuzu.js/comments/init.js
2025-02-20 01:55:49 +00:00

9 lines
298 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);
}
};