Remove url from static_handler.js

This commit is contained in:
John Crepezzi 2011-11-18 16:00:05 -05:00
commit 4f00d3c71a
2 changed files with 4 additions and 6 deletions

View file

@ -35,6 +35,6 @@ http.createServer(function(request, response) {
// Otherwise, look for static file
handler = new StaticHandler('./static');
handler.handle(request, response);
handler.handle(incoming.pathname, response);
}).listen(7777);