diff options
Diffstat (limited to 'plugin/multiplex')
-rw-r--r-- | plugin/multiplex/master.js | 5 | ||||
-rw-r--r-- | plugin/multiplex/package.json | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/plugin/multiplex/master.js b/plugin/multiplex/master.js index 4becad0..7f4bf45 100644 --- a/plugin/multiplex/master.js +++ b/plugin/multiplex/master.js @@ -19,6 +19,9 @@ }; + // post once the page is loaded, so the client follows also on "open URL". + window.addEventListener( 'load', post ); + // Monitor events that trigger a change in state Reveal.addEventListener( 'slidechanged', post ); Reveal.addEventListener( 'fragmentshown', post ); @@ -28,4 +31,4 @@ Reveal.addEventListener( 'paused', post ); Reveal.addEventListener( 'resumed', post ); -}());
\ No newline at end of file +}()); diff --git a/plugin/multiplex/package.json b/plugin/multiplex/package.json index 368bfd6..bbed77a 100644 --- a/plugin/multiplex/package.json +++ b/plugin/multiplex/package.json @@ -2,7 +2,7 @@ "name": "reveal-js-multiplex", "version": "1.0.0", "description": "reveal.js multiplex server", - "homepage": "http://lab.hakim.se/reveal-js", + "homepage": "http://revealjs.com", "scripts": { "start": "node index.js" }, |