diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-20 23:20:42 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-20 23:20:42 -0500 |
commit | b2cc694d95da9fc7b6b9d1e63a118b01877f25e1 (patch) | |
tree | 2a017e7ac1c25907baee93d1d3be8c866770a5ba /ext | |
parent | 8c236cca44dd6d641f9b185e784cfae9641884cc (diff) |
Replace window.yomichan_display with DisplayFloat.instance
Diffstat (limited to 'ext')
-rw-r--r-- | ext/fg/js/float.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/float.js b/ext/fg/js/float.js index 8c7de906..7375b68f 100644 --- a/ext/fg/js/float.js +++ b/ext/fg/js/float.js @@ -119,4 +119,4 @@ DisplayFloat._messageHandlers = new Map([ ['initialize', (self, {options, popupInfo, url, childrenSupported}) => self.initialize(options, popupInfo, url, childrenSupported)] ]); -window.yomichan_display = new DisplayFloat(); +DisplayFloat.instance = new DisplayFloat(); |