diff options
| author | Stephen Blott | 2015-04-28 12:08:07 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-04-28 12:08:07 +0100 |
| commit | cd8bd61fc24b3b9cb27e2386a8e1c34c740b9545 (patch) | |
| tree | adeab26828e13a6997b0332339bffe612b40636c /content_scripts | |
| parent | 0c5ff7e7e5f37670480a216e2b3140795353a562 (diff) | |
| download | vimium-cd8bd61fc24b3b9cb27e2386a8e1c34c740b9545.tar.bz2 | |
Revert "Do not grab back focus if Vimium is disabled."
This reverts commit cfb137d515e6f214322538fdd9a8e236445b63b0.
Conflicts:
content_scripts/vimium_frontend.coffee
There are HUD initialization issues with this.
Diffstat (limited to 'content_scripts')
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 9b074487..bc1f7687 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -149,6 +149,7 @@ window.initializeModes = -> new NormalMode new PassKeysMode new InsertMode permanent: true + new GrabBackFocus Scroller.init settings # @@ -158,8 +159,6 @@ initializePreDomReady = -> settings.addEventListener("load", LinkHints.init.bind(LinkHints)) settings.load() - # Note. checkIfEnabledForUrl() must come after initializeModes(), here, because checkIfEnabledForUrl() may - # install an additional mode (GrabBackFocus). initializeModes() checkIfEnabledForUrl() refreshCompletionKeys() @@ -230,10 +229,7 @@ window.installListeners = -> do (type) -> installListener window, type, (event) -> handlerStack.bubbleEvent type, event installListener document, "DOMActivate", (event) -> handlerStack.bubbleEvent 'DOMActivate', event installedListeners = true - # Other one-time initialization operations. FindModeHistory.init() - # 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: |
