function showCodeBlocks()

in landing-page/themes/iceberg-theme/static/js/iceberg-theme.js [50:55]


function showCodeBlocks(group, type) {
    var codeblocks = document.querySelectorAll(`.${type}`);
    for (var i = 0; i < codeblocks.length; i++) {
    	  codeblocks[i].style.display = 'block';
    }
}