1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 05:58:03 +01:00

s/retVal/ret/ in buffer.followDocumentRelationship.

This commit is contained in:
Doug Kearns
2009-01-07 01:11:06 +11:00
parent 61d3fae8b4
commit ddce42858c

View File

@@ -1082,12 +1082,12 @@ function Buffer() //{{{
return false;
}
let retVal = followFrame(window.content);
if (!retVal)
// only loop through frames if the main content didnt match
retVal = Array.some(window.content.frames, followFrame);
let ret = followFrame(window.content);
if (!ret)
// only loop through frames if the main content didn't match
ret = Array.some(window.content.frames, followFrame);
if (!retVal)
if (!ret)
liberator.beep();
},