Browse Source

retabed files

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
84b36a7193
  1. 1
      lib/httprpc.js
  2. 1
      lib/qt.js
  3. 2
      lib/websocket.js

1
lib/httprpc.js

@ -25,7 +25,6 @@ if(process.env.NODE_ENV !== "build") {
var XMLHttpRequest = require('xmlhttprequest').XMLHttpRequest; // jshint ignore:line
}
var HttpRpcProvider = function (host) {
this.handlers = [];
this.host = host;

1
lib/qt.js

@ -16,6 +16,7 @@
*/
/** @file qt.js
* @authors:
* Jeffrey Wilcke <jeff@ethdev.com>
* Marek Kotewicz <marek@ethdev.com>
* @date 2014
*/

2
lib/websocket.js

@ -16,6 +16,7 @@
*/
/** @file websocket.js
* @authors:
* Jeffrey Wilcke <jeff@ethdev.com>
* Marek Kotewicz <marek@ethdev.com>
* Marian Oancea <marian@ethdev.com>
* @date 2014
@ -50,6 +51,7 @@ if(process.env.NODE_ENV !== "build") {
}
};
};
WebSocketProvider.prototype.send = function(payload) {
if(this.ready) {
var data = JSON.stringify(payload);

Loading…
Cancel
Save