aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2012-07-09 21:15:01 -0400
committerHakim El Hattab <hakim.elhattab@gmail.com>2012-07-09 21:15:01 -0400
commitafd10f68865b74e84fe1848df1f2a0cb88e91428 (patch)
treeb525cb9a52118a02fefd3c0b64ab92bc718b3e6e
parentd9512172e289567fc778547246419996a84a2855 (diff)
downloadfreenode-live-2017-presentation-afd10f68865b74e84fe1848df1f2a0cb88e91428.tar
freenode-live-2017-presentation-afd10f68865b74e84fe1848df1f2a0cb88e91428.tar.gz
adjustments to initial node messages #57
-rw-r--r--plugin/slidenotes/index.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/plugin/slidenotes/index.js b/plugin/slidenotes/index.js
index 41282a3..1be941e 100644
--- a/plugin/slidenotes/index.js
+++ b/plugin/slidenotes/index.js
@@ -43,5 +43,13 @@ app.get("/notes/:socketId", function(req, res) {
// Actually listen
app.listen(opts.port || null);
-console.log("Open the slides at http://localhost" + (opts.port ? (':' + opts.port) : '') + " and look for a link to the speaker notes in the console");
-console.log("Advance through your slides and your notes will advance automatically");
+var brown = '\033[33m',
+ green = '\033[32m',
+ reset = '\033[0m';
+
+var slidesLocation = "http://localhost" + ( opts.port ? ( ':' + opts.port ) : '' );
+
+console.log( brown + "reveal.js - Slide Notes" + reset );
+console.log( "1. Open the slides at " + green + slidesLocation + reset );
+console.log( "2. Click on the link your JS console to go to the notes page" );
+console.log( "3. Advance through your slides and your notes will advance automatically" );