aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorBenjamin Tan <demoneaux@gmail.com>2016-03-06 16:52:02 +0800
committerBenjamin Tan <demoneaux@gmail.com>2016-03-06 16:52:02 +0800
commit9eb56f8146e9d4d57e579fcc1a40ae370b036e5b (patch)
treef7487cc3586fd93c3d649a6df98a7a2956c3aec1 /plugin
parent0eb2d81f351478b0625cb61838dc36baf2170aec (diff)
downloadfreenode-live-2017-presentation-9eb56f8146e9d4d57e579fcc1a40ae370b036e5b.tar
freenode-live-2017-presentation-9eb56f8146e9d4d57e579fcc1a40ae370b036e5b.tar.gz
Remove unused dependencies.
Diffstat (limited to 'plugin')
-rw-r--r--plugin/notes-server/index.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugin/notes-server/index.js b/plugin/notes-server/index.js
index 683f064..fc66a26 100644
--- a/plugin/notes-server/index.js
+++ b/plugin/notes-server/index.js
@@ -2,7 +2,6 @@ var http = require('http');
var express = require('express');
var fs = require('fs');
var io = require('socket.io');
-var _ = require('underscore');
var Mustache = require('mustache');
var app = express();
@@ -64,5 +63,5 @@ var slidesLocation = 'http://localhost' + ( opts.port ? ( ':' + opts.port ) : ''
console.log( brown + 'reveal.js - Speaker 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( '2. Click on the link in your JS console to go to the notes page' );
console.log( '3. Advance through your slides and your notes will advance automatically' );