sound-parade/public/list.js
2022-01-16 00:16:11 +09:00

9 lines
154 B
JavaScript

function setup() {
noCanvas();
selectAll('.name').forEach(item => {
httpGet(item.attribute('src'), text => {
item.html(text);
})
})
}