aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts
diff options
context:
space:
mode:
authormrmr19932017-07-04 12:50:30 +0100
committermrmr19932017-11-01 07:48:39 +0000
commit60ca3238e5e5d35f3ed6acbbadd370f432b746ef (patch)
treefbef3a3857578be9503f65ba28242c85abce1081 /content_scripts
parente424bb942b58e5cee3506e42b6f3aa9008eb7b17 (diff)
downloadvimium-60ca3238e5e5d35f3ed6acbbadd370f432b746ef.tar.bz2
Rename Rect.rectOverlaps to Rect.intersectsStrict, clarify the comment
Diffstat (limited to 'content_scripts')
-rw-r--r--content_scripts/link_hints.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee
index 33a876e0..198a64f3 100644
--- a/content_scripts/link_hints.coffee
+++ b/content_scripts/link_hints.coffee
@@ -321,7 +321,7 @@ class LinkHintsMode
rotateHints: do ->
markerOverlapsStack = (marker, stack) ->
for otherMarker in stack
- return true if Rect.rectsOverlap marker.markerRect, otherMarker.markerRect
+ return true if Rect.intersectsStrict marker.markerRect, otherMarker.markerRect
false
->