mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 14:02:28 +01:00
update some old refererences to util.arrayIter
This commit is contained in:
@@ -685,7 +685,7 @@ function Buffer() //{{{
|
||||
// put feeds rss into pageFeeds[]
|
||||
let nFeed = 0;
|
||||
var linkNodes = doc.getElementsByTagName("link");
|
||||
for (link in util.arrayIter(linkNodes))
|
||||
for (link in util.Array.iterator(linkNodes))
|
||||
{
|
||||
if (!link.href)
|
||||
return;
|
||||
@@ -720,7 +720,7 @@ function Buffer() //{{{
|
||||
.getService(nsICacheService);
|
||||
let cacheKey = doc.location.toString().replace(/#.*$/, "");
|
||||
|
||||
for (let proto in util.arrayIter(["HTTP", "FTP"]))
|
||||
for (let proto in util.Array.iterator(["HTTP", "FTP"]))
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user