From cfc65c31313731dfa0d36c2eceaca35e9d50992f Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 18 Feb 2024 08:11:47 -0500 Subject: Refactor DocumentUtil (#706) * Refactor DocumentUtil * Isolate suppression --- ext/js/accessibility/google-docs-util.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/js/accessibility/google-docs-util.js') diff --git a/ext/js/accessibility/google-docs-util.js b/ext/js/accessibility/google-docs-util.js index 31ae5982..f3f800fd 100644 --- a/ext/js/accessibility/google-docs-util.js +++ b/ext/js/accessibility/google-docs-util.js @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -import {DocumentUtil} from '../dom/document-util.js'; +import {computeZoomScale, isPointInAnyRect} from '../dom/document-util.js'; import {TextSourceRange} from '../dom/text-source-range.js'; /** @@ -126,7 +126,7 @@ export class GoogleDocsUtil { */ _getRangeWithPoint(textNode, x, y, normalizeCssZoom) { if (normalizeCssZoom) { - const scale = DocumentUtil.computeZoomScale(textNode); + const scale = computeZoomScale(textNode); x /= scale; y /= scale; } @@ -137,7 +137,7 @@ export class GoogleDocsUtil { const mid = Math.floor((start + end) / 2); range.setStart(textNode, mid); range.setEnd(textNode, end); - if (DocumentUtil.isPointInAnyRect(x, y, range.getClientRects())) { + if (isPointInAnyRect(x, y, range.getClientRects())) { start = mid; } else { end = mid; -- cgit v1.2.3