diff options
author | Hakim El Hattab | 2012-07-20 22:20:07 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-07-20 22:20:33 -0400 |
commit | 0ef90e0dcf289e81414faecc8122825532d1689d (patch) | |
tree | 2eeebacf895f97e88d97b822d39810024aa6322a /README.md | |
parent | 7f9662edab1c7d25c3a74506e365684e0befb7c3 (diff) |
'keyboard' config option for disabling keyboard navigation (closes #84)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -39,6 +39,9 @@ Reveal.initialize({ // Push each slide change to the browser history history: false, + // Enable keyboard shortcuts for navigation + keyboard: true, + // Loop the presentation loop: false, @@ -168,7 +171,7 @@ You can change the appearance of the speaker notes by editing the file at `plugi #### 1.4 (master/beta) - Main #reveal container is now selected via a class instead of ID - API methods for adding or removing all event listeners -- The 'slidechange' event now includes currentSlide and previousSlide +- The ```slidechange``` event now includes currentSlide and previousSlide - Fixed bug where 'slidechange' was firing twice when history was enabled - Folder structure updates for scalability (see /lib & /plugin) - Slide notes by [rmurphey](https://github.com/rmurphey) @@ -177,6 +180,7 @@ You can change the appearance of the speaker notes by editing the file at `plugi - Added 'autoSlide' config - Bug fix: The 'slidechanged' event is now firing upon 'hashchange'. Thanks [basecode](https://github.com/basecode) - Bug fix: JS error when the 'progress' option was true but there was no progress DOM element +- ```keyboard``` config flag for disabling all keyboard navigation #### 1.3 - Revised keyboard shortcuts, including ESC for overview, N for next, P for previous. Thanks [mahemoff](https://github.com/mahemoff) |