Removed unused code
authorDavid Banham <david@banham.id.au>
Mon, 6 Aug 2012 04:40:32 +0000 (14:40 +1000)
committerDavid Banham <david@banham.id.au>
Mon, 6 Aug 2012 04:40:32 +0000 (14:40 +1000)
plugin/multiplex/index.js

index 7e3f872a2e43d8fd97de0f213b86a49586c6a98b..45c9c749ea2b06bfb41e66ca39c52006b75fea49 100644 (file)
@@ -1,8 +1,6 @@
 var express   = require('express');
 var fs        = require('fs');
 var io        = require('socket.io');
-var _         = require('underscore');
-var Mustache  = require('mustache');
 var crypto             = require('crypto');
 
 var app       = express.createServer();
@@ -49,14 +47,3 @@ var createHash = function(secret) {
 
 // Actually listen
 app.listen(opts.port || null);
-
-var brown = '\033[33m', 
-       green = '\033[32m', 
-       reset = '\033[0m';
-
-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( "3. Advance through your slides and your notes will advance automatically" );