aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Blott2015-06-03 19:15:54 +0100
committerStephen Blott2015-06-03 19:15:54 +0100
commit1c4daf625949451178a349e93811b04a00472835 (patch)
tree2cd97f009892298e410244ea2b641833a3ccbe42
parent457a976421107f9a67ac43090b0370366427bce1 (diff)
downloadvimium-1c4daf625949451178a349e93811b04a00472835.tar.bz2
Modes, better comments.
-rw-r--r--content_scripts/mode.coffee4
1 files changed, 2 insertions, 2 deletions
diff --git a/content_scripts/mode.coffee b/content_scripts/mode.coffee
index 86d3e011..9105fabb 100644
--- a/content_scripts/mode.coffee
+++ b/content_scripts/mode.coffee
@@ -48,8 +48,8 @@ class Mode
@log "activate:", @id
# If options.suppressAllKeyboardEvents is truthy, then all keyboard events are suppressed. This avoids
- # the need for modes which block all keyboard events to 1) provide handlers for all keyboard events,
- # and 2) worry about their return value.
+ # the need for modes which block all keyboard events 1) to provide handlers for all keyboard events,
+ # and 2) to worry about their return values.
if @options.suppressAllKeyboardEvents
for type in [ "keydown", "keypress", "keyup" ]
do (handler = @options[type]) =>