shithub: hugo

ref: f9d6feca0802cd83c4d843244ce389cf7c792cec
dir: /docs/themes/gohugoioTheme/assets/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')
  }
}