me / src /runtime /menav /getAllElements.js
cheymin's picture
Upload 136 files
e1ae2c6 verified
// θŽ·ε–ζ‰€ζœ‰ε…ƒη΄ 
module.exports = function getAllElements(type) {
return Array.from(document.querySelectorAll(`[data-type="${type}"]`)).map((el) => {
const id = this._getElementId(el);
return {
id: id,
type: type,
element: el,
};
});
};