From 0b10cbd713faf56240f3da6940c58c17159849a9 Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Tue, 28 Oct 2014 16:53:31 +0100 Subject: [PATCH] http renamed to httprpc --- http.js => httprpc.js | 13 +++++++------ index.html | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) rename http.js => httprpc.js (81%) diff --git a/http.js b/httprpc.js similarity index 81% rename from http.js rename to httprpc.js index 768d7c1ffd..50674ec948 100644 --- a/http.js +++ b/httprpc.js @@ -1,5 +1,5 @@ (function () { - var HttpProvider = function (host) { + var HttpRpcProvider = function (host) { this.handlers = []; this.host = host; }; @@ -22,7 +22,7 @@ }; }; - HttpProvider.prototype.sendRequest = function (payload, cb) { + HttpRpcProvider.prototype.sendRequest = function (payload, cb) { var data = formatJsonRpcObject(payload); var request = new XMLHttpRequest(); @@ -35,7 +35,7 @@ } }; - HttpProvider.prototype.send = function (payload) { + HttpRpcProvider.prototype.send = function (payload) { var self = this; this.sendRequest(payload, function (request) { self.handlers.forEach(function (handler) { @@ -44,7 +44,7 @@ }); }; - HttpProvider.prototype.poll = function (payload, id) { + HttpRpcProvider.prototype.poll = function (payload, id) { var self = this; this.sendRequest(payload, function (request) { var parsed = JSON.parse(request.responseText); @@ -57,13 +57,14 @@ }); }; - Object.defineProperty(HttpProvider.prototype, "onmessage", { + Object.defineProperty(HttpRpcProvider.prototype, "onmessage", { set: function (handler) { this.handlers.push(handler); } }); if (typeof(web3) !== "undefined" && web3.providers !== undefined) { - web3.providers.HttpProvider = HttpProvider; + web3.providers.HttpRpcProvider = HttpRpcProvider; } })(); + diff --git a/index.html b/index.html index 70f788d0de..2b3f50a141 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - +