Fix mistake in _ucUtils.windows.forEach

This commit is contained in:
MrOtherGuy 2019-12-12 19:42:35 +02:00
parent 7b6fb7f4cc
commit 853b27d39c

View file

@ -261,7 +261,7 @@ let _uc = {
},
forEach: function(fun,onlyBrowsers = true){
let wins = this.get(onlyBrowsers);
wins.every((w)=>(fun(w.document,w)))
wins.forEach((w)=>(fun(w.document,w)))
}
}
},