Merge pull request #355 from nkzawa/patch-7

remove invalid value for strict mode
This commit is contained in:
Tony Kovanen
2014-10-10 23:45:16 +03:00

View File

@@ -20,7 +20,7 @@ module.exports = Polling;
var hasXHR2 = (function() {
var XMLHttpRequest = require('xmlhttprequest');
var xhr = new XMLHttpRequest({ agent: this.agent, xdomain: false });
var xhr = new XMLHttpRequest({ xdomain: false });
return null != xhr.responseType;
})();