fixed syntax errors

This commit is contained in:
Jeena Paradies 2012-07-22 03:05:04 +02:00
parent 11c642fd7a
commit d73d6b73e1
3 changed files with 4 additions and 4 deletions

View file

@ -7,8 +7,8 @@ define([
function(HttpServer, Socket, Coordinator) {
function Server(options) {
this.coordinator = new Coordinator();
this.httpServer = new HttpServer(options);
coordinator = new Coordinator();
httpServer = new HttpServer(options);
this.socket = new Socket(httpServer.getServer(), options, coordinator);
}