aboutsummaryrefslogtreecommitdiff
path: root/pollymer.js
diff options
context:
space:
mode:
authorAnatoly Kudinov <zz@rialabs.org>2013-05-18 00:37:14 +0400
committerAnatoly Kudinov <zz@rialabs.org>2013-05-18 00:42:44 +0400
commitb950ac6605baa612f0cfc56183e805184844e371 (patch)
treef6a1c5ab1621dcee8daf3d76c9122c790b4455d1 /pollymer.js
parent354b15cef04c3929a2c239197f127d1976a9a53e (diff)
downloadpollymer-b950ac6605baa612f0cfc56183e805184844e371.tar
pollymer-b950ac6605baa612f0cfc56183e805184844e371.tar.gz
Per request timeouts
Diffstat (limited to 'pollymer.js')
-rw-r--r--pollymer.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/pollymer.js b/pollymer.js
index 72b4b46..ddeda70 100644
--- a/pollymer.js
+++ b/pollymer.js
@@ -9,7 +9,6 @@ var DEBUG = true;
(function (window, undefined) {
var NAMESPACE = "Pollymer";
- var TIMEOUT = 60000;
var emptyMethod = function () { };
var consoleInfo;
@@ -206,6 +205,7 @@ var DEBUG = true;
this.maxDelay = 1000;
this.recurring = false;
this.withCredentials = false;
+ this.timeout = 60000
if (arguments.length > 0) {
var config = arguments[0];
@@ -227,6 +227,9 @@ var DEBUG = true;
if ("withCredentials" in config) {
this.withCredentials = config.withCredentials;
}
+ if ("timeout" in config) {
+ this.timeout = config.timeout
+ }
}
};
Request.prototype.start = function (method, url, headers, body) {
@@ -285,7 +288,7 @@ var DEBUG = true;
};
Request.prototype._startConnect = function () {
var self = this;
- this._timer = window.setTimeout(function () { self._timeout(); }, TIMEOUT);
+ this._timer = window.setTimeout(function () { self._timeout(); }, this.timeout);
this._tries++;