Bug 917365 - Fix an exception when starting a simulator r=paul

This commit is contained in:
Alexandre Poirot 2013-09-17 09:15:00 +02:00
parent 93f0604f84
commit e2694f1bba

View File

@ -136,7 +136,7 @@ let UI = {
this.connection.log("Simulator ready. Connecting.");
this.connection.port = port;
this.connection.host = "localhost";
this.connection.once("connected", function() {
this.connection.once("connected", () => {
this.connection.log("Connected to simulator.");
this.connection.keepConnecting = false;
});