shithub: hugo

ref: 900b5f6cfe5a377ef369d26cd700201be4cf6b06
dir: /themes/gohugoioTheme/src/js/codeblocks.js/

View raw version
let article = document.getElementById('prose')

if (article) {
  let codeBlocks = article.getElementsByTagName('code')
    for (let [key, codeBlock] of Object.entries(codeBlocks)){
    var widthDif = codeBlock.scrollWidth - codeBlock.clientWidth
    if (widthDif > 0)
      codeBlock.parentNode.classList.add('expand')
  }
}