Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

Latest commit

 

History

History
34 lines (21 loc) · 733 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 733 Bytes

Webyarns specific Reveal

This is fork of https://revealjs.com/ (version 3.8.x)

documentation is work in progress

Navigation

Disable keyboard data-disable-keyboard

Setup: Use disableKeyboardSupport from webyarns-utils.js for the keyboardCondition Reveal configuration property

<script src="webyarns-util/lib/webyarns-utils.js"></script>

<script>
    Reveal.initialize({
        keyboardCondition: disableKeyboardSupport,
        dependencies: [  ],
    });
</script>

Then use data-disable-keyboard to disable keyboard navigation on a particular slide

<section data-disable-keyboard>
    
</section>

Demo webyarns-disable-keyboard.html