diff options
| author | Stephen Blott | 2015-01-08 12:02:03 +0000 |
|---|---|---|
| committer | Stephen Blott | 2015-01-08 12:40:34 +0000 |
| commit | 2fe40dd69bb93b620da60464b9cb57c36adaeca1 (patch) | |
| tree | fb88cbc9081da1f66ec435dd96b0872ce45762e4 /content_scripts/vimium_frontend.coffee | |
| parent | 637d90be6847051d20a4cf3b704d599c877a97d3 (diff) | |
| download | vimium-2fe40dd69bb93b620da60464b9cb57c36adaeca1.tar.bz2 | |
Modes; incorporate small changes from #1413.
Slightly more significant:
Move several utilities to dome_utils.
Diffstat (limited to 'content_scripts/vimium_frontend.coffee')
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index e8248c0a..b1fc3c6f 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -123,15 +123,14 @@ initializePreDomReady = -> settings.addEventListener("load", LinkHints.init.bind(LinkHints)) settings.load() - # Install normal mode. This is at the bottom of both the mode stack and the handler stack, and is never - # deactivated. + # Install normal mode. This is near the bottom of the handler stack, and is never deactivated. new NormalMode() # Initialize the scroller. The scroller installs a key handler, and this is next on the handler stack, # immediately above normal mode. Scroller.init settings - # Install passKeys and insert modes. These too are permanently on the stack (although not always active). + # Install passKeys mode and the insert-mode trigger. These too are permanently on the stack. passKeysMode = new PassKeysMode() new InsertModeTrigger() Mode.updateBadge() |
