Skip to content

Commit

Permalink
fix linting error
Browse files Browse the repository at this point in the history
..and smuggle an updated comment in with that.
  • Loading branch information
girst committed Mar 16, 2024
1 parent fd9f7cb commit 6ab64c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion extension/lib/button.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ help = require('./help')
translate = require('./translate')
utils = require('./utils')

{CustomizableUI} = ChromeUtils.importESModule('resource:///modules/CustomizableUI.sys.mjs')
{CustomizableUI} =
ChromeUtils.importESModule('resource:///modules/CustomizableUI.sys.mjs')

BUTTON_ID = 'VimFxButton'

Expand Down
2 changes: 1 addition & 1 deletion extension/lib/utils.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ onRemoved = (element, fn) ->

contentAreaClick = (data, browser) ->
# This function is adapted from the same-named one currently in
# mozilla-central/browser/actors/ClickHandlerParent.jsm. Keep in sync!
# mozilla-central/browser/actors/ClickHandlerParent.sys.mjs. Keep in sync!
# Note: Our version is shortened substantially and unlike Mozilla, we pass in
# the browser object instead of extracting it from the browsingContext. Also,
# our version is only invoked from the parent process, so we can pass
Expand Down

0 comments on commit 6ab64c8

Please sign in to comment.