diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-09-30 21:05:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 21:05:34 -0400 |
commit | 19eb990aeb197f70a0cf46efdf9f2bdd6ed1d48c (patch) | |
tree | 5215d2e1d669e4576cd5c345e400727de93999eb /ext/js/dom | |
parent | 6cf01555e7ea8d8f795188d16b2de5df58d0a110 (diff) |
DOMRect update (#1973)
* Compare using left/top rather than x/y
* Simplify
* Update Popup*.getFrameRect to return a custom structure
* Don't use x/y on DOMRect
Diffstat (limited to 'ext/js/dom')
-rw-r--r-- | ext/js/dom/document-util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/dom/document-util.js b/ext/js/dom/document-util.js index 0338d452..8c7adf2c 100644 --- a/ext/js/dom/document-util.js +++ b/ext/js/dom/document-util.js @@ -408,7 +408,7 @@ class DocumentUtil { this._setImposterStyle(imposterStyle, 'width', `${width}px`); this._setImposterStyle(imposterStyle, 'height', `${height}px`); } - if (imposterRect.x !== elementRect.x || imposterRect.y !== elementRect.y) { + if (imposterRect.left !== elementRect.left || imposterRect.top !== elementRect.top) { left += (elementRect.left - imposterRect.left); top += (elementRect.top - imposterRect.top); this._setImposterStyle(imposterStyle, 'left', `${left}px`); |