diff options
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index a21beb27..9b074487 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -232,7 +232,8 @@ window.installListeners = -> installedListeners = true # Other one-time initialization operations. FindModeHistory.init() - new GrabBackFocus if isEnabledForUrl and not runningDOMTests + # See note in ../tests/dom_tests/dom_tests.coffee re. window.runningDOMTests. + new GrabBackFocus if isEnabledForUrl and not window.runningDOMTests # # Whenever we get the focus: |
