cut back on spacing

This commit is contained in:
Hakim El Hattab 2013-03-08 19:23:14 -05:00
parent 999ac52256
commit 46f98ff483
1 changed files with 0 additions and 4 deletions

View File

@ -382,14 +382,12 @@ In some cases it can be desirable to run notes on a separate device from the one
```javascript ```javascript
Reveal.initialize({ Reveal.initialize({
... ...
dependencies: [ dependencies: [
{ src: 'socket.io/socket.io.js', async: true }, { src: 'socket.io/socket.io.js', async: true },
{ src: 'plugin/notes-server/client.js', async: true } { src: 'plugin/notes-server/client.js', async: true }
] ]
}); });
``` ```
@ -408,7 +406,6 @@ Configuration is via the multiplex object in ```Reveal.initialize```. To generat
``` ```
Reveal.initialize({ Reveal.initialize({
... ...
// Generate a unique id and secret at revealjs.jit.su/token // Generate a unique id and secret at revealjs.jit.su/token
@ -423,7 +420,6 @@ Reveal.initialize({
{ src: 'plugin/multiplex/client.js', async: true, condition: function() { return !!document.body.classList; } }, { src: 'plugin/multiplex/client.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'plugin/multiplex/master.js', async: true, condition: function() { return !!document.body.classList; } }, { src: 'plugin/multiplex/master.js', async: true, condition: function() { return !!document.body.classList; } },
] ]
}); });
``` ```