function hideCodeBlocks()

in landing-page/themes/iceberg-theme/static/js/iceberg-theme.js [43:48]


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