aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/vimium_frontend.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'content_scripts/vimium_frontend.coffee')
-rw-r--r--content_scripts/vimium_frontend.coffee8
1 files changed, 5 insertions, 3 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee
index 023952c1..56f7742e 100644
--- a/content_scripts/vimium_frontend.coffee
+++ b/content_scripts/vimium_frontend.coffee
@@ -291,9 +291,11 @@ DomUtils.documentReady ->
#
focusThisFrame = (request) ->
unless request.forceFocusThisFrame
- if DomUtils.windowIsTooSmall() or document.body?.tagName.toLowerCase() == "frameset"
- # This frame is too small to focus or it's a frameset. Cancel and tell the background page to focus the
- # next frame instead. This affects sites like Google Inbox, which have many tiny iframes. See #1317.
+ skipThisFrame = DomUtils.windowIsTooSmall() # Frame is too small; see #1317.
+ skipThisFrame ||= document.body?.tagName.toLowerCase() == "frameset"
+ skipThisFrame ||= window.isVimiumUIComponent and not HelpDialog.showing
+ if skipThisFrame
+ # Cancel and tell the background page to focus the next frame instead.
chrome.runtime.sendMessage handler: "nextFrame"
return
window.focus()