diff options
Diffstat (limited to 'ext/js/display/display-resizer.js')
-rw-r--r-- | ext/js/display/display-resizer.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/display/display-resizer.js b/ext/js/display/display-resizer.js index 9fd56045..5512317a 100644 --- a/ext/js/display/display-resizer.js +++ b/ext/js/display/display-resizer.js @@ -128,7 +128,7 @@ class DisplayResizer { const {parentPopupId} = this._display; if (parentPopupId === null) { return; } - const size = await this._display.invokeParentFrame('popup.getFrameSize', {id: parentPopupId}); + const size = await this._display.invokeParentFrame('PopupFactory.getFrameSize', {id: parentPopupId}); if (this._token !== token) { return; } this._startSize = size; } @@ -158,7 +158,7 @@ class DisplayResizer { height += y - this._startOffset.y; width = Math.max(Math.max(0, handleSize.width), width); height = Math.max(Math.max(0, handleSize.height), height); - await this._display.invokeParentFrame('popup.setFrameSize', {id: parentPopupId, width, height}); + await this._display.invokeParentFrame('PopupFactory.setFrameSize', {id: parentPopupId, width, height}); } _getTouch(touchList, identifier) { |