Fixing bustage (missing closing parenthesis) in pageInfo.js

This commit is contained in:
jaggernaut%netscape.com 2002-03-15 06:03:34 +00:00
parent b2673560c4
commit 02ae4e9f97

View File

@ -466,7 +466,7 @@ function grabAllLinks(aWindow,aDocument)
if ("links" in aDocument)
return theList.concat(aDocument.links);
else
return theList.concat(aDocument.getElementsByTagNameNS(XHTMLNS, "a");
return theList.concat(aDocument.getElementsByTagNameNS(XHTMLNS, "a"));
}
function openURL(target)