diff options
Diffstat (limited to 'ext/fg/js/util.js')
-rw-r--r-- | ext/fg/js/util.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/util.js b/ext/fg/js/util.js index eb153e9b..4f4bcbd3 100644 --- a/ext/fg/js/util.js +++ b/ext/fg/js/util.js @@ -17,7 +17,7 @@ */ -function getRangeAtPoint(point, lookAhead) { +function getRangeAtPoint(point, scanLength) { const range = document.caretRangeFromPoint(point.x, point.y); if (range === null) { return null; @@ -29,7 +29,7 @@ function getRangeAtPoint(point, lookAhead) { } const offset = range.startOffset; - const length = Math.min(node.length - offset, lookAhead); + const length = Math.min(node.length - offset, scanLength); if (length === 0) { return null; } |