Skip to content

Commit

Permalink
Fixes #458 #385
Browse files Browse the repository at this point in the history
  • Loading branch information
3rd-Eden committed Aug 11, 2011
1 parent 26ead25 commit 8fdf4e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/transports/xhr.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@

XHR.prototype.request = function (method) {
var req = io.util.request(this.socket.isXDomain())
, query = io.util.query(this.socket.options.query, + 't=' + +new Date);
, query = io.util.query(this.socket.options.query, 't=' + +new Date);

req.open(method || 'GET', this.prepareUrl() + query, true);

Expand Down

0 comments on commit 8fdf4e2

Please sign in to comment.