aboutsummaryrefslogtreecommitdiffstats
path: root/lib/websocket.js
diff options
context:
space:
mode:
authorMarian Oancea <contact@siteshop.ro>2014-11-06 01:52:52 +0800
committerMarian Oancea <contact@siteshop.ro>2014-11-06 01:52:52 +0800
commit15088d7ebe606ce6510aee0a8315ed175f1770b0 (patch)
treeedc70bc1c3b2337df7f4125fd39215279575d06f /lib/websocket.js
parent4be4db5e6cfdde4ba5c1243b2bafeb6bbae3643c (diff)
downloaddexon-15088d7ebe606ce6510aee0a8315ed175f1770b0.tar.gz
dexon-15088d7ebe606ce6510aee0a8315ed175f1770b0.tar.zst
dexon-15088d7ebe606ce6510aee0a8315ed175f1770b0.zip
Fixed indent
Fixed indent so we can compare differences in PR.
Diffstat (limited to 'lib/websocket.js')
-rw-r--r--lib/websocket.js74
1 files changed, 37 insertions, 37 deletions
diff --git a/lib/websocket.js b/lib/websocket.js
index 5c64d28f3..8ccb3d40b 100644
--- a/lib/websocket.js
+++ b/lib/websocket.js
@@ -24,50 +24,50 @@
var WebSocket = require('ws'); // jshint ignore:line
-var WebSocketProvider = function(host) {
- // onmessage handlers
- this.handlers = [];
- // queue will be filled with messages if send is invoked before the ws is ready
- this.queued = [];
- this.ready = false;
+ var WebSocketProvider = function(host) {
+ // onmessage handlers
+ this.handlers = [];
+ // queue will be filled with messages if send is invoked before the ws is ready
+ this.queued = [];
+ this.ready = false;
- this.ws = new WebSocket(host);
+ this.ws = new WebSocket(host);
- var self = this;
- this.ws.onmessage = function(event) {
- for(var i = 0; i < self.handlers.length; i++) {
- self.handlers[i].call(self, JSON.parse(event.data), event);
- }
- };
+ var self = this;
+ this.ws.onmessage = function(event) {
+ for(var i = 0; i < self.handlers.length; i++) {
+ self.handlers[i].call(self, JSON.parse(event.data), event);
+ }
+ };
- this.ws.onopen = function() {
- self.ready = true;
+ this.ws.onopen = function() {
+ self.ready = true;
- for(var i = 0; i < self.queued.length; i++) {
- // Resend
- self.send(self.queued[i]);
- }
+ for(var i = 0; i < self.queued.length; i++) {
+ // Resend
+ self.send(self.queued[i]);
+ }
+ };
};
-};
-WebSocketProvider.prototype.send = function(payload) {
- if(this.ready) {
- var data = JSON.stringify(payload);
+ WebSocketProvider.prototype.send = function(payload) {
+ if(this.ready) {
+ var data = JSON.stringify(payload);
- this.ws.send(data);
- } else {
- this.queued.push(payload);
- }
-};
+ this.ws.send(data);
+ } else {
+ this.queued.push(payload);
+ }
+ };
-WebSocketProvider.prototype.onMessage = function(handler) {
- this.handlers.push(handler);
-};
+ WebSocketProvider.prototype.onMessage = function(handler) {
+ this.handlers.push(handler);
+ };
-WebSocketProvider.prototype.unload = function() {
- this.ws.close();
-};
-Object.defineProperty(WebSocketProvider.prototype, "onmessage", {
- set: function(provider) { this.onMessage(provider); }
-});
+ WebSocketProvider.prototype.unload = function() {
+ this.ws.close();
+ };
+ Object.defineProperty(WebSocketProvider.prototype, "onmessage", {
+ set: function(provider) { this.onMessage(provider); }
+ });
module.exports = WebSocketProvider;