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 a1c7380a0d
commit 2d88b5ea44

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;
});