diff options
author | Rebecca Murphey | 2012-06-07 23:21:14 -0400 |
---|---|---|
committer | Rebecca Murphey | 2012-06-07 23:21:14 -0400 |
commit | 60f2eb9fb3c4443fbc43d387e866f383f0f70d67 (patch) | |
tree | 116d482d7a041f4424d2851bf04dad4247a09cf2 /index.html | |
parent | 5d979fdf4a8738ed83e9c4f2827c42ceae247cd8 (diff) |
taking a stab at a presenter notes server
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -48,6 +48,10 @@ <p> <i><small>- <a href="http://hakim.se">Hakim El Hattab</a> / <a href="http://twitter.com/hakimel">@hakimel</a></small></i> </p> + + <aside class="notes"> + Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you run the speaker notes server. + </aside> </section> <!-- Example of nested vertical slides --> @@ -268,6 +272,7 @@ linkify( 'a' ); <script> // Parse the query string into a key/value object var query = {}; + location.search.replace( /[A-Z0-9]+?=(\w*)/gi, function(a) { query[ a.split( '=' ).shift() ] = a.split( '=' ).pop(); } ); @@ -311,5 +316,8 @@ linkify( 'a' ); hljs.initHighlightingOnLoad(); </script> + <!-- the next two lines enable the speaker notes server --> + <script src="socket.io/socket.io.js"></script> + <script src="js/slidenotes.js"></script> </body> </html>
\ No newline at end of file |