1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

Firefox platform: longer default wait time for deferred tasks

This commit is contained in:
gorhill 2017-05-30 09:16:44 -04:00
parent a72769f8ba
commit 9a9a8c8c3f
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -55,7 +55,7 @@ var deferUntil = function(testFn, mainFn, details) {
var now = 0,
next = details.next || 200,
until = details.until || 2000;
until = details.until || 12800;
var check = function() {
if ( testFn() === true || now >= until ) {