multiplex readme tweaks #514

This commit is contained in:
Hakim El Hattab 2013-07-18 21:16:22 -04:00
parent 8f47bd04e6
commit 0148b3fc2d
1 changed files with 20 additions and 16 deletions

View File

@ -522,23 +522,24 @@ You can then access your master presentation at ```http://localhost:1947```
Example configuration: Example configuration:
```javascript ```javascript
Reveal.initialize({ Reveal.initialize({
// other options // other options...
multiplex: { multiplex: {
// Example values. Generate your own. // Example values. To generate your own, see the socket.io server instructions.
secret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation secret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation
id: '1ea875674b17ca76', // Obtained from socket.io server id: '1ea875674b17ca76', // Obtained from socket.io server
url: 'revealjs.jit.su:80' // Location of socket.io server url: 'revealjs.jit.su:80' // Location of socket.io server
}, },
// Optional libraries used to extend on reveal.js // Don't forget to add the dependencies
dependencies: [ dependencies: [
// other deps
{ src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true }, { src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true },
{ src: 'plugin/multiplex/master.js', async: true }, { src: 'plugin/multiplex/master.js', async: true },
// and if you want speaker notes // and if you want speaker notes
{ src: 'plugin/notes-server/client.js', async: true } { src: 'plugin/notes-server/client.js', async: true }
// other dependencies...
] ]
}); });
``` ```
@ -549,20 +550,21 @@ Served from a publicly accessible static file server. Examples include: GitHub P
Example configuration: Example configuration:
```javascript ```javascript
Reveal.initialize({ Reveal.initialize({
// other options // other options...
multiplex: { multiplex: {
// Example values. Generate your own. // Example values. To generate your own, see the socket.io server instructions.
secret: null, // null so the clients do not have control of the master presentation secret: null, // null so the clients do not have control of the master presentation
id: '1ea875674b17ca76', // id, obtained from socket.io server id: '1ea875674b17ca76', // id, obtained from socket.io server
url: 'revealjs.jit.su:80' // Location of socket.io server url: 'revealjs.jit.su:80' // Location of socket.io server
}, },
// Optional libraries used to extend on reveal.js // Don't forget to add the dependencies
dependencies: [ dependencies: [
// other deps
{ src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true }, { src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true },
{ src: 'plugin/multiplex/client.js', async: true } { src: 'plugin/multiplex/client.js', async: true }
// other dependencies...
] ]
}); });
``` ```
@ -586,20 +588,21 @@ The socket.io server can play the role of static file server for your client pre
Example configuration: Example configuration:
```javascript ```javascript
Reveal.initialize({ Reveal.initialize({
// other options // other options...
multiplex: { multiplex: {
// Example values. Generate your own. // Example values. To generate your own, see the socket.io server instructions.
secret: null, // null so the clients do not have control of the master presentation secret: null, // null so the clients do not have control of the master presentation
id: '1ea875674b17ca76', // id, obtained from socket.io server id: '1ea875674b17ca76', // id, obtained from socket.io server
url: 'example.com:80' // Location of your socket.io server url: 'example.com:80' // Location of your socket.io server
}, },
// Optional libraries used to extend on reveal.js // Don't forget to add the dependencies
dependencies: [ dependencies: [
// other deps
{ src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true }, { src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true },
{ src: 'plugin/multiplex/client.js', async: true } { src: 'plugin/multiplex/client.js', async: true }
// other dependencies...
] ]
``` ```
@ -608,21 +611,22 @@ It can also play the role of static file server for your master presentation and
Example configuration: Example configuration:
```javascript ```javascript
Reveal.initialize({ Reveal.initialize({
// other options // other options...
multiplex: { multiplex: {
// Example values. Generate your own. // Example values. To generate your own, see the socket.io server instructions.
secret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation secret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation
id: '1ea875674b17ca76', // Obtained from socket.io server id: '1ea875674b17ca76', // Obtained from socket.io server
url: 'example.com:80' // Location of your socket.io server url: 'example.com:80' // Location of your socket.io server
}, },
// Optional libraries used to extend on reveal.js // Don't forget to add the dependencies
dependencies: [ dependencies: [
// other deps
{ src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true }, { src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true },
{ src: 'plugin/multiplex/master.js', async: true }, { src: 'plugin/multiplex/master.js', async: true },
{ src: 'plugin/multiplex/client.js', async: true } { src: 'plugin/multiplex/client.js', async: true }
// other dependencies...
] ]
}); });
``` ```