diff options
| -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]) => | 
