diff options
| author | Stephen Blott | 2015-06-03 19:15:54 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2015-06-03 19:15:54 +0100 | 
| commit | 1c4daf625949451178a349e93811b04a00472835 (patch) | |
| tree | 2cd97f009892298e410244ea2b641833a3ccbe42 | |
| parent | 457a976421107f9a67ac43090b0370366427bce1 (diff) | |
| download | vimium-1c4daf625949451178a349e93811b04a00472835.tar.bz2 | |
Modes, better comments.
| -rw-r--r-- | content_scripts/mode.coffee | 4 | 
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]) => | 
