mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 16:17:59 +01:00
s/retVal/ret/ in buffer.followDocumentRelationship.
This commit is contained in:
@@ -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();
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user