|
@@ -131,10 +131,9 @@ var RevealNotes = (function() {
|
|
}
|
|
}
|
|
|
|
|
|
// Open the notes when the 's' key is hit
|
|
// Open the notes when the 's' key is hit
|
|
- Reveal.addKeyBinding({keyCode: 83, key: 'S', description: 'Speaker notes'}, openNotes);
|
|
|
|
-
|
|
|
|
- // Show our keyboard shortcut in the reveal.js help overlay
|
|
|
|
- if( window.Reveal ) Reveal.registerKeyboardShortcut( 'S', 'Speaker notes view' );
|
|
|
|
|
|
+ Reveal.addKeyBinding({keyCode: 83, key: 'S', description: 'Speaker notes view'}, function() {
|
|
|
|
+ openNotes();
|
|
|
|
+ } );
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|