1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 17:27:57 +01:00

normalize foldmarkers

This commit is contained in:
Doug Kearns
2007-11-19 07:13:20 +00:00
parent c83397064e
commit 5a3d51626c
11 changed files with 96 additions and 51 deletions

View File

@@ -793,7 +793,7 @@ vimperator.Buffer = function () //{{{
relText = new RegExp(relationship, "i");
var elems = window.content.document.getElementsByTagName("link");
// links have higher priority than normal <a> hrefs
// links have higher priority than normal <a> hrefs
for (var i = 0; i < elems.length; i++)
{
if (relText.test(elems[i].rel))
@@ -815,7 +815,7 @@ vimperator.Buffer = function () //{{{
vimperator.buffer.followLink(elems[i], vimperator.CURRENT_TAB);
return;
}
else
else
{
// images with alt text being href
var children = elems[i].childNodes;