diff options
Diffstat (limited to 'ext/js/dom/text-source-element.js')
| -rw-r--r-- | ext/js/dom/text-source-element.js | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/ext/js/dom/text-source-element.js b/ext/js/dom/text-source-element.js index fe3fe083..b5fc1683 100644 --- a/ext/js/dom/text-source-element.js +++ b/ext/js/dom/text-source-element.js @@ -16,6 +16,7 @@   */  /* global + * DocumentUtil   * StringUtil   */ @@ -95,11 +96,11 @@ class TextSourceElement {      }      getRect() { -        return this._element.getBoundingClientRect(); +        return DocumentUtil.convertRectZoomCoordinates(this._element.getBoundingClientRect(), this._element);      }      getRects() { -        return this._element.getClientRects(); +        return DocumentUtil.convertMultipleRectZoomCoordinates(this._element.getClientRects(), this._element);      }      getWritingMode() { |