Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upReveal.js keyboard navigation is broken #26252
Closed
Labels
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Point servo at https://revealjs.com (or any other site using reveal) and keyboard navigation doesn't work. The culprit is https://github.com/hakimel/reveal.js/blob/00b0ace3863952ce95df4430d203686fd27bfc20/js/reveal.js#L5233 which checks for editable elements using
document.activeElement.contentEditable !== 'inherit'rather thandocument.activeElement.iscontentEditable. With that change, reveal works.Related: #12776