aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 1 insertions, 4 deletions
diff --git a/README.md b/README.md
index e001a93..1808679 100644
--- a/README.md
+++ b/README.md
@@ -250,9 +250,6 @@ Reveal.initialize({
// Speaker notes
{ src: 'plugin/notes/notes.js', async: true },
- // Remote control your reveal.js presentation using a touch device
- { src: 'plugin/remotes/remotes.js', async: true },
-
// MathJax
{ src: 'plugin/math/math.js', async: true }
]
@@ -682,7 +679,7 @@ When reveal.js runs inside of an iframe it can optionally bubble all of its even
```javascript
window.addEventListener( 'message', function( event ) {
var data = JSON.parse( event.data );
- if( data.namespace === 'reveal' && data.eventName ='slidechanged' ) {
+ if( data.namespace === 'reveal' && data.eventName ==='slidechanged' ) {
// Slide changed, see data.state for slide number
}
} );