diff options
author | Alex Yatskov <FooSoft@users.noreply.github.com> | 2019-09-02 08:33:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-02 08:33:10 -0700 |
commit | 3c9f7ba15267f52dd1bf37cd8835e2f7b76819e7 (patch) | |
tree | 189f09ba4c2f8c57527a51dd29bf896079c832b6 /ext/fg/js/frontend.js | |
parent | 037363e3a70675a580431d2ee891e3d88fae511c (diff) | |
parent | 707d2569cc2c8c6da2bdacea6e999a7ea3ea6297 (diff) |
Merge pull request #196 from toasted-nutbread/vertical-text-popup-position
Vertical text popup position
Diffstat (limited to 'ext/fg/js/frontend.js')
-rw-r--r-- | ext/fg/js/frontend.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index ebff768e..5a8d18c1 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -301,7 +301,11 @@ class Frontend { } catch (e) { if (window.yomichan_orphaned) { if (textSource && this.options.scanning.modifier !== 'none') { - this.popup.showOrphaned(textSource.getRect(), this.options); + this.popup.showOrphaned( + textSource.getRect(), + textSource.getWritingMode(), + this.options + ); } } else { this.onError(e); @@ -333,6 +337,7 @@ class Frontend { const url = window.location.href; this.popup.termsShow( textSource.getRect(), + textSource.getWritingMode(), definitions, this.options, {sentence, url, focus} @@ -358,6 +363,7 @@ class Frontend { const url = window.location.href; this.popup.kanjiShow( textSource.getRect(), + textSource.getWritingMode(), definitions, this.options, {sentence, url, focus} |