diff options
| author | Stephen Blott | 2017-11-03 07:03:32 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2017-11-03 07:03:34 +0000 | 
| commit | e3ca00a9f6402730b21a059a751a1b6f1d9d19ea (patch) | |
| tree | f764df0ba3bb6256893ddcfcf1b6543e608fbcb1 | |
| parent | 73b1bd8057ef9b71f12bca5e81dae0103281800b (diff) | |
| download | vimium-e3ca00a9f6402730b21a059a751a1b6f1d9d19ea.tar.bz2 | |
ContentEditable must be lower case here.
See https://github.com/philc/vimium/pull/2762#issuecomment-341490268.
| -rw-r--r-- | content_scripts/link_hints.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee index 89cf29f1..9145454a 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -663,7 +663,7 @@ LocalHints =            "button" , "tab" , "link", "checkbox", "menuitem", "menuitemcheckbox", "menuitemradio"          ] or          (contentEditable = element.getAttribute "contentEditable") and -          contentEditable.toLowerCase() in ["", "contentEditable", "true"] +          contentEditable.toLowerCase() in ["", "contenteditable", "true"]        isClickable = true      # Check for jsaction event listeners on the element. | 
