function scrollItemToMiddle()

in site-ui/src/js/06-nav.js [38:41]


  function scrollItemToMiddle (el, parentEl) {
    var adjustment = (el.getBoundingClientRect().height - parentEl.getBoundingClientRect().height) * 0.5 + el.offsetTop
    if (adjustment > 0) parentEl.scrollTop = adjustment
  }