olivetin/web/js/loader.js

11 lines
302 B
JavaScript

import './classes.js' // To define action-button
export function loadContents (json) {
for (const jsonButton of json.actions) {
const a = document.createElement('button', { is: 'action-button' })
a.constructFromJson(jsonButton)
document.getElementById('rootGroup').appendChild(a)
}
}