mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-09 17:55:37 +02:00
Fix getVisibleElements helper in RTL-locales
This commit is contained in:
parent
88f72d6b1c
commit
b7b048e36c
3 changed files with 30 additions and 11 deletions
|
@ -1006,6 +1006,10 @@ class BaseViewer {
|
|||
: this._scrollMode === ScrollMode.HORIZONTAL;
|
||||
}
|
||||
|
||||
get _isContainerRtl() {
|
||||
return getComputedStyle(this.container).direction === "rtl";
|
||||
}
|
||||
|
||||
get isInPresentationMode() {
|
||||
return this.presentationModeState === PresentationModeState.FULLSCREEN;
|
||||
}
|
||||
|
@ -1055,7 +1059,8 @@ class BaseViewer {
|
|||
this.container,
|
||||
this._pages,
|
||||
true,
|
||||
this._isScrollModeHorizontal
|
||||
this._isScrollModeHorizontal,
|
||||
this._isScrollModeHorizontal && this._isContainerRtl
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue