From 68a28b7e14cb6ec248f994303cf0ad36513de63c Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Tue, 23 Dec 2008 01:31:55 +1100 Subject: [PATCH] Fix return signature of buffer.{followLink,focusElement}. --- common/content/buffer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/buffer.js b/common/content/buffer.js index d773b842..9cbab80d 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -1008,7 +1008,7 @@ function Buffer() //{{{ if (elemTagName == "frame" || elemTagName == "iframe") { elem.contentWindow.focus(); - return false; + return; } elem.focus(); @@ -1109,7 +1109,7 @@ function Buffer() //{{{ if (localName == "frame" || localName == "iframe") // broken? { elem.contentWindow.focus(); - return false; + return; } else if (localName == "area") // for imagemap {