diff options
author | Florian Haas <florian@hastexo.com> | 2015-06-24 14:07:35 +0200 |
---|---|---|
committer | Florian Haas <florian@hastexo.com> | 2015-06-24 14:09:36 +0200 |
commit | 3aec26cdc9af72f9da0a8f718a8b40eb3d4c9b17 (patch) | |
tree | 89dda38c0b0e2045773aa14b43cfecae1ca42c51 /README.md | |
parent | 9ef5915974246192abe949e7740372187401d62f (diff) | |
download | freenode-live-2017-presentation-3aec26cdc9af72f9da0a8f718a8b40eb3d4c9b17.tar freenode-live-2017-presentation-3aec26cdc9af72f9da0a8f718a8b40eb3d4c9b17.tar.gz |
Update README to include socket.io 1.3.5 examples
The socket.io server at reveal.jit.su has been updated with socket.io
1.x, which means the examples referring to 0.9.x client libraries
no longer work. Update them with URLs for 1.3.5.
Fixes #1276.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -817,7 +817,7 @@ Reveal.initialize({ // Don't forget to add the dependencies dependencies: [ - { src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.16/socket.io.min.js', async: true }, + { src: '//cdn.socket.io/socket.io-1.3.5.js', async: true }, { src: 'plugin/multiplex/master.js', async: true }, // and if you want speaker notes @@ -845,7 +845,7 @@ Reveal.initialize({ // Don't forget to add the dependencies dependencies: [ - { src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.16/socket.io.min.js', async: true }, + { src: '//cdn.socket.io/socket.io-1.3.5.js', async: true }, { src: 'plugin/multiplex/client.js', async: true } // other dependencies... @@ -883,7 +883,7 @@ Reveal.initialize({ // Don't forget to add the dependencies dependencies: [ - { src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.16/socket.io.min.js', async: true }, + { src: '//cdn.socket.io/socket.io-1.3.5.js', async: true }, { src: 'plugin/multiplex/client.js', async: true } // other dependencies... @@ -906,7 +906,7 @@ Reveal.initialize({ // Don't forget to add the dependencies dependencies: [ - { src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.16/socket.io.min.js', async: true }, + { src: '//cdn.socket.io/socket.io-1.3.5.js', async: true }, { src: 'plugin/multiplex/master.js', async: true }, { src: 'plugin/multiplex/client.js', async: true } |