From: Hakim El Hattab Date: Sun, 9 Jun 2013 17:17:31 +0000 (+0200) Subject: semi-correction #470 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=5655b5f4674f71ed23988c7e0fc04bfe4415206c;p=reveal.js.git semi-correction #470 --- diff --git a/plugin/multiplex/index.js b/plugin/multiplex/index.js index a278026..6f5d8b1 100644 --- a/plugin/multiplex/index.js +++ b/plugin/multiplex/index.js @@ -30,7 +30,7 @@ app.configure(function() { }); app.get("/", function(req, res) { - res.writeHead(200, {'Content-Type': 'text/html'}) + res.writeHead(200, {'Content-Type': 'text/html'}); fs.createReadStream(opts.baseDir + '/index.html').pipe(res); }); diff --git a/plugin/notes-server/index.js b/plugin/notes-server/index.js index 8acac52..5535c90 100644 --- a/plugin/notes-server/index.js +++ b/plugin/notes-server/index.js @@ -30,7 +30,7 @@ app.configure(function() { }); app.get("/", function(req, res) { - res.writeHead(200, {'Content-Type': 'text/html'}) + res.writeHead(200, {'Content-Type': 'text/html'}); fs.createReadStream(opts.baseDir + '/index.html').pipe(res); });