aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts
diff options
context:
space:
mode:
authorStephen Blott2014-12-14 15:58:22 +0000
committerStephen Blott2014-12-14 16:01:51 +0000
commit886e94e5c1563483702208675c5d12735f007938 (patch)
treeedca607c76b8b5843f8e8d5232a420a2f95dcfa8 /content_scripts
parent9c677fc91cd2641c709bb1afe03466c92b0ee0ea (diff)
downloadvimium-886e94e5c1563483702208675c5d12735f007938.tar.bz2
FRAMESET frames should not be registered.
Somewhere along the road, this got goofed up. This reverts to the intended behaviour.
Diffstat (limited to 'content_scripts')
-rw-r--r--content_scripts/vimium_frontend.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee
index 9478a7d5..fc65f6c0 100644
--- a/content_scripts/vimium_frontend.coffee
+++ b/content_scripts/vimium_frontend.coffee
@@ -205,7 +205,7 @@ initializeOnDomReady = ->
registerFrame = ->
# Don't register frameset containers; focusing them is no use.
- if document.body.tagName != "FRAMESET"
+ if document.body.tagName.toLowerCase() != "frameset"
chrome.runtime.sendMessage
handler: "registerFrame"
frameId: frameId