commit eab44b4fbaf3aabc7077a06d92ee02ce61b57932 Author: David Fifield david@bamsoftware.com Date: Fri Apr 25 21:40:49 2014 -0700
More rigidly follow the camelcase convention.
Suggested by gk in https://trac.torproject.org/projects/tor/ticket/11183#comment:20. --- firefox/components/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/firefox/components/main.js b/firefox/components/main.js index d8b40f4..b07ed84 100644 --- a/firefox/components/main.js +++ b/firefox/components/main.js @@ -122,14 +122,14 @@ MeekHTTPHelper.lookupStatus = function(status) { // happens within callbacks. MeekHTTPHelper.LocalConnectionHandler = function(transport) { this.transport = transport; - this.requestreader = null; + this.requestReader = null; this.channel = null; this.listener = null; this.readRequest(this.makeRequest.bind(this)); }; MeekHTTPHelper.LocalConnectionHandler.prototype = { readRequest: function(callback) { - this.requestreader = new MeekHTTPHelper.RequestReader(this.transport, callback); + this.requestReader = new MeekHTTPHelper.RequestReader(this.transport, callback); },
makeRequest: function(req) {
tor-commits@lists.torproject.org