function showCurrentCopyAlert()

in pages/static/js/flink.js [140:151]


function showCurrentCopyAlert(containerId) {
    document
        .querySelectorAll("[copyable='flink-module']")
        .forEach(function (alert) {
            alert.style["display"] = "none";
        });

    var alert = document.querySelector("[copyable='flink-module'][copyattribute='" + containerId + "'");

    alert.style["text-align"] = "center";
    alert.style["display"] = "block";
}