mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-08 01:10:08 +02:00
Merge pull request #12464 from baloone/Fix_getVisibleElements_in_rtl_direction
Fix getVisibleElements helper in RTL-locales
This commit is contained in:
commit
0d1a874358
3 changed files with 30 additions and 11 deletions
|
@ -442,7 +442,8 @@ function getVisibleElements(
|
|||
scrollEl,
|
||||
views,
|
||||
sortByVisibility = false,
|
||||
horizontal = false
|
||||
horizontal = false,
|
||||
rtl = false
|
||||
) {
|
||||
const top = scrollEl.scrollTop,
|
||||
bottom = top + scrollEl.clientHeight;
|
||||
|
@ -465,11 +466,11 @@ function getVisibleElements(
|
|||
element.offsetTop + element.clientTop + element.clientHeight;
|
||||
return elementBottom > top;
|
||||
}
|
||||
function isElementRightAfterViewLeft(view) {
|
||||
function isElementNextAfterViewHorizontally(view) {
|
||||
const element = view.div;
|
||||
const elementRight =
|
||||
element.offsetLeft + element.clientLeft + element.clientWidth;
|
||||
return elementRight > left;
|
||||
const elementLeft = element.offsetLeft + element.clientLeft;
|
||||
const elementRight = elementLeft + element.clientWidth;
|
||||
return rtl ? elementLeft < right : elementRight > left;
|
||||
}
|
||||
|
||||
const visible = [],
|
||||
|
@ -479,7 +480,9 @@ function getVisibleElements(
|
|||
? 0
|
||||
: binarySearchFirstItem(
|
||||
views,
|
||||
horizontal ? isElementRightAfterViewLeft : isElementBottomAfterViewTop
|
||||
horizontal
|
||||
? isElementNextAfterViewHorizontally
|
||||
: isElementBottomAfterViewTop
|
||||
);
|
||||
|
||||
// Please note the return value of the `binarySearchFirstItem` function when
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue