diff options
author | Hakim El Hattab | 2015-09-29 10:38:34 +0200 |
---|---|---|
committer | Hakim El Hattab | 2015-09-29 10:38:34 +0200 |
commit | c1a7e83d75a917307320acfdcb87a5702109e979 (patch) | |
tree | d2a4b2bfeb71566def591b54671754d9a776e504 /plugin/multiplex/client.js | |
parent | b16bc6fc2e948dedf597004fb99e69d4042daa47 (diff) |
multiplexing work with socket.io 1.0+ #1281 #1276
Diffstat (limited to 'plugin/multiplex/client.js')
-rw-r--r-- | plugin/multiplex/client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/multiplex/client.js b/plugin/multiplex/client.js index e6179f6..3ffd1e0 100644 --- a/plugin/multiplex/client.js +++ b/plugin/multiplex/client.js @@ -8,6 +8,6 @@ if (data.socketId !== socketId) { return; } if( window.location.host === 'localhost:1947' ) return; - Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); + Reveal.setState(data.state); }); }()); |