diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-07-01 18:37:29 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-07-01 18:37:29 -0400 |
commit | 421afe6368686b40a13c3b837b41ae1ad552ff7f (patch) | |
tree | 315cd93402b6f2a538449224eb4f06820677a0c4 /lib | |
parent | 2b9f8e6c0de07feef8ef5fdb62b5827a5de4ef3b (diff) | |
download | fosdem-2018-presentation-421afe6368686b40a13c3b837b41ae1ad552ff7f.tar fosdem-2018-presentation-421afe6368686b40a13c3b837b41ae1ad552ff7f.tar.gz |
update instructions printed on server start
Diffstat (limited to 'lib')
-rw-r--r-- | lib/slidenotes/index.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/slidenotes/index.js b/lib/slidenotes/index.js index 1d36c4d..206996d 100644 --- a/lib/slidenotes/index.js +++ b/lib/slidenotes/index.js @@ -43,6 +43,5 @@ app.get("/notes/:socketId", function(req, res) { // Actually listen 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("Advance through your slides and your speaker notes will advance automatically"); +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"); |