diff options
author | David Banham | 2013-03-08 11:51:58 +1100 |
---|---|---|
committer | David Banham | 2013-03-08 12:43:18 +1100 |
commit | 580a72c4449c57cb743e09f44eeeb374cd00f172 (patch) | |
tree | 684a7f7920e903f6372e590d606aede0b09fb287 /plugin/multiplex/index.js | |
parent | 61c229a4f969a0720085c2710f8a7cfd8a12b4a6 (diff) |
Bring multiplex up to date
Diffstat (limited to 'plugin/multiplex/index.js')
-rw-r--r-- | plugin/multiplex/index.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/plugin/multiplex/index.js b/plugin/multiplex/index.js index 4665639..aa8a55a 100644 --- a/plugin/multiplex/index.js +++ b/plugin/multiplex/index.js @@ -15,7 +15,6 @@ var opts = { io.sockets.on('connection', function(socket) { socket.on('slidechanged', function(slideData) { - console.log(slideData); if (createHash(slideData.secret) === slideData.socketId) { slideData.secret = null; socket.broadcast.emit(slideData.socketId, slideData); @@ -32,12 +31,6 @@ app.configure(function() { app.get("/", function(req, res) { fs.createReadStream(opts.baseDir + '/index.html').pipe(res); }); -app.get("/fixed.html", function(req, res) { - fs.createReadStream(opts.baseDir + '/fixed.html').pipe(res); -}); -app.get("/fixedmaster.html", function(req, res) { - fs.createReadStream(opts.baseDir + '/fixedmaster.html').pipe(res); -}); app.get("/token", function(req,res) { var ts = new Date().getTime(); |