Skip to content
Snippets Groups Projects
Commit 7cf17ac0 authored by David Banham's avatar David Banham
Browse files

Removed unused code

parent a2e021cc
No related branches found
No related tags found
No related merge requests found
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" );
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment