diff options
author | Hakim El Hattab | 2013-04-11 09:17:12 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-04-11 09:17:20 -0400 |
commit | 3999430b81125ce21e402849c54f4203efa80985 (patch) | |
tree | 7ef7fbefc69434a97906d9394ecdd18e110154c2 /plugin/multiplex/client.js | |
parent | 25e0fbc050734dc21f9384aa0afd9a3c37c27816 (diff) | |
parent | 225662116982f13eb4e91d2c3d94a133c6d1b4ea (diff) |
merge mutiplex fragment fix #395
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 0e0b39b..e6179f6 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, null, 'remote'); + Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); }); }()); |