tweaks to slidenotes
authorHakim El Hattab <hakim.elhattab@gmail.com>
Sun, 1 Jul 2012 20:56:06 +0000 (16:56 -0400)
committerHakim El Hattab <hakim.elhattab@gmail.com>
Sun, 1 Jul 2012 20:56:06 +0000 (16:56 -0400)
README.md
index.html
js/reveal.slidenotes.js
lib/slidenotes/index.js

index e55c339d39bd9ffb5ea7259811a22127a242c012..854b30ef93a368fadbafc133115513b032a43bee 100644 (file)
--- a/README.md
+++ b/README.md
@@ -116,7 +116,7 @@ You'll also need to [install Node.js](http://nodejs.org/); then, install the ser
 
 Once Node.js and the dependencies are installed, run the following command from the root directory:
 
-               node slidenotes
+               node lib/slidenotes
 
 By default, the slides will be served at [localhost:1947](http://localhost:1947).
 
index a3378f11a6e37fc0e64b20b5e508f4f19d6359b5..c8bdfedf6f35d67689322922958b95e4d381c62e 100644 (file)
@@ -317,7 +317,7 @@ linkify( 'a' );
                </script>
 
                <!-- the next two lines enable the speaker notes server -->
-               <!-- <script src="socket.io/socket.io.js"></script>
-               <script src="js/reveal.slidenotes.js"></script> -->
+               <script src="socket.io/socket.io.js"></script>
+               <script src="js/reveal.slidenotes.js"></script>
        </body>
 </html>
\ No newline at end of file
index d347301995946a02786b6387aa4fadf18d3831bf..b686ec97cbb7373ee7d55dde5e63da207a014177 100644 (file)
@@ -5,7 +5,7 @@
 
        var socket = io.connect(window.location.origin);
        var socketId = Math.random().toString().slice(2);
-       console.log('View slide notes at ' + window.location.origin + '/_notes/' + socketId);
+       console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId);
 
        Reveal.addEventListener( 'slidechanged', function( event ) {
                var nextindexh;
index 1c0585c5d7b14b62c8074d423d379c4b8c4aeb09..1d36c4db6215e1b22aefd89677562af78d4e0c1f 100644 (file)
@@ -30,7 +30,7 @@ app.get("/", function(req, res) {
        fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
 });
 
-app.get("/_notes/:socketId", function(req, res) {
+app.get("/notes/:socketId", function(req, res) {
 
        fs.readFile(opts.baseDir + 'lib/slidenotes/notes.html', function(err, data) {
                res.send(Mustache.to_html(data.toString(), {
@@ -44,5 +44,5 @@ app.get("/_notes/:socketId", function(req, res) {
 app.listen(opts.port || null);
 
 console.log("Your slides are at http://localhost" + (opts.port ? (':' + opts.port) : ''));
-console.log("Your notes are at http://localhost" + (opts.port ? (':' + opts.port) : '') + '/_notes');
+// console.log("Your notes are at http://localhost" + (opts.port ? (':' + opts.port) : '') + '/notes');
 console.log("Advance through your slides and your speaker notes will advance automatically");