function buildBox()

in src/frontend_service/static/index.js [191:199]


function buildBox(place, top, left, size, type, value) {
    let box = `<div style="top: ${top}px;position: absolute;${place}: ${left}px;font-size: ${size}px;">
        <div style="font-size: 15px;margin-top: 0px;margin-left: 0px;margin-bottom: 3px;font-weight: bold;">
            ${type}
        </div>
        ${value}
        </div>`;
    return box;
}