From e3ca00a9f6402730b21a059a751a1b6f1d9d19ea Mon Sep 17 00:00:00 2001 From: Stephen Blott Date: Fri, 3 Nov 2017 07:03:32 +0000 Subject: ContentEditable must be lower case here. See https://github.com/philc/vimium/pull/2762#issuecomment-341490268. --- content_scripts/link_hints.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content_scripts') 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. -- cgit v1.2.3