Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

Commit

Permalink
FIX: fixed syntax error on isExitedWithoudReady
Browse files Browse the repository at this point in the history
  • Loading branch information
rpl committed Dec 26, 2012
1 parent 87ed7f5 commit 77f3c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/lib/remote-simulator-client.js
Expand Up @@ -36,7 +36,7 @@ const RemoteSimulatorClient = Class({
// check if b2g is running
get isRunning() !!this.process,
// check if b2g exited without reach a ready state
get isExitedWithoutReady() !this.process && !this._pingbackCompleted;
get isExitedWithoutReady() { return !this.process && !this._pingbackCompleted; },

_hookInternalEvents: function () {
// NOTE: remote all listeners (currently disabled cause this function
Expand Down

0 comments on commit 77f3c2c

Please sign in to comment.