Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bandwagon/content/scripts/rpc/event.js
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-06-11 11:59:20 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-06-11 11:59:20 (GMT)
commit15238e13918a019bdc020c3eeafa5e01c810bbf1 (patch)
treee11aa9a28033dbfca2ede7169da745518bf3e992 /bandwagon/content/scripts/rpc/event.js
parente9361d633e8163e508a4dcde36c25c94f7e8b272 (diff)
Fake v2 production branchv2
Diffstat (limited to 'bandwagon/content/scripts/rpc/event.js')
-rw-r--r--bandwagon/content/scripts/rpc/event.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/bandwagon/content/scripts/rpc/event.js b/bandwagon/content/scripts/rpc/event.js
index ae8e165..a388f3a 100644
--- a/bandwagon/content/scripts/rpc/event.js
+++ b/bandwagon/content/scripts/rpc/event.js
@@ -39,16 +39,16 @@ Bandwagon.RPC.Event = function(type, result, response)
{
this.Bandwagon = Bandwagon;
- // public instance variables
+ // public instance variables
this._type = type;
- this._result = result;
- this._response = response;
+ this._result = result;
+ this._response = response;
this.error = null;
}
Bandwagon.RPC.Event.prototype.isError = function()
{
- return this._result != this.Bandwagon.RPC.Constants.BANDWAGON_RPC_NET_SUCCESS;
+ return this._result != this.Bandwagon.RPC.Constants.BANDWAGON_RPC_NET_SUCCESS;
}
Bandwagon.RPC.Event.prototype.setError = function(error)