increase timeouts when debugging

This commit is contained in:
AJ ONeal 2017-02-10 21:56:23 -07:00
parent 7de254d597
commit 834c41e0d1
1 changed files with 6 additions and 0 deletions

View File

@ -138,6 +138,9 @@
, insertIframe: function (url, state, opts) {
opts = opts || {};
if (opts.debug) {
opts.timeout = opts.timeout || 15 * 60 * 1000;
}
var promise = new OAUTH3.PromiseA(function (resolve, reject) {
var tok;
var iframeDiv;
@ -181,6 +184,9 @@
}
, openWindow: function (url, state, opts) {
if (opts.debug) {
opts.timeout = opts.timeout || 15 * 60 * 1000;
}
var promise = new OAUTH3.PromiseA(function (resolve, reject) {
var tok;