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 c5fca525..2548abb3 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -623,7 +623,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 | 
