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:
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)