function findNextElement()

in site-ui/src/js/06-nav.js [105:110]


  function findNextElement (from, el) {
    if ((el = from.nextElementSibling)) return el
    el = from
    while ((el = el.nextSibling) && el.nodeType !== 1);
    return el
  }