mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-04-27 07:41:06 -07:00
Fix mistake in _ucUtils.windows.forEach
This commit is contained in:
parent
7b6fb7f4cc
commit
853b27d39c
1 changed files with 1 additions and 1 deletions
|
|
@ -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)))
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue