diff options
| -rw-r--r-- | content_scripts/link_hints.coffee | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee index 0f2425c3..0a6445be 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -621,7 +621,8 @@ LocalHints =        when "button", "select"          isClickable ||= not element.disabled        when "label" -        isClickable ||= element.control? and (@getVisibleClickable element.control).length == 0 +        isClickable ||= element.control? and not element.control.disabled and +                        (@getVisibleClickable element.control).length == 0        when "body"          isClickable ||=            if element == document.body and not windowIsFocused() and | 
