From 9898423f0e8f26619b21fc00d9a3c1503dc15910 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Mon, 17 Sep 2012 15:39:41 -0700 Subject: [PATCH] refactor client side styling --- lib/superagent.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/superagent.js b/lib/superagent.js index 8c7127709..4569b6bba 100644 --- a/lib/superagent.js +++ b/lib/superagent.js @@ -567,10 +567,10 @@ */ Request.prototype.end = function(fn){ - var self = this - , xhr = this.xhr = getXHR() - , query = this._query - , data = this._data; + var self = this; + var xhr = this.xhr = getXHR(); + var query = this._query; + var data = this._data; // store callback this.callback = fn || noop;