increase timeouts when debugging

Este commit está contenido en:
AJ ONeal 2017-02-10 21:56:23 -07:00
padre 7de254d597
commit 834c41e0d1

Ver fichero

@ -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;