import Container from "../containers/container.js"; const TPL = `
`; export default class FloatingButtons extends Container { doRender() { this.$widget = $(TPL); this.$children = this.$widget.find(".floating-buttons-children"); for (const widget of this.children) { this.$children.append(widget.render()); } } }