function remove()

in src/modules/components/viewer.js [179:184]


function remove(frame, id) {
    var previous = frame.contentDocument.getElementById(id);
    if (previous) {
        previous.parentNode.removeChild(previous);
    }
}