mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
code review
This commit is contained in:
parent
2750b13e34
commit
a2f79952a2
1 changed files with 1 additions and 5 deletions
|
@ -54,11 +54,7 @@ var deferUntil = function(testFn, mainFn, details) {
|
|||
var until = details.until || 2000;
|
||||
|
||||
var check = function() {
|
||||
if ( testFn() === true ) {
|
||||
mainFn();
|
||||
return;
|
||||
}
|
||||
if ( now >= until ) {
|
||||
if ( testFn() === true || now >= until ) {
|
||||
mainFn();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue