function findNextElement()

in antora-ui-camel/src/js/01-nav.js [148:152]


  function findNextElement (from, selector) {
    var el = from.nextElementSibling
    if (!el) return
    return selector ? el[el.matches ? 'matches' : 'msMatchesSelector'](selector) && el : el
  }