diff options
Diffstat (limited to 'ext/fg/js')
| -rw-r--r-- | ext/fg/js/frontend.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index 71e53b03..ae0953f9 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -106,8 +106,8 @@ class Frontend {          const visualViewport = window.visualViewport;          if (visualViewport !== null && typeof visualViewport === 'object') { -            window.visualViewport.addEventListener('scroll', this._onVisualViewportScroll.bind(this)); -            window.visualViewport.addEventListener('resize', this._onVisualViewportResize.bind(this)); +            visualViewport.addEventListener('scroll', this._onVisualViewportScroll.bind(this)); +            visualViewport.addEventListener('resize', this._onVisualViewportResize.bind(this));          }          yomichan.on('orphaned', this._onOrphaned.bind(this)); |