Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/open-amdocs/webrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yair Even Or authored and Yair Even Or committed Jul 4, 2022
2 parents 3e60a89 + aaeee5b commit 8868a1e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Scrollable/Scrollable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ export default class Scrollable extends React.PureComponent {

const nextEvent = this.event.next,
prevEvent = this.event.prev,
changed = nextEvent.scrollHeight !== prevEvent.scrollHeight ||
changed = nextEvent.clientHeight !== prevEvent.clientHeight ||
nextEvent.scrollHeight !== prevEvent.scrollHeight ||
nextEvent.clientWidth !== prevEvent.clientWidth ||
nextEvent.scrollWidth !== prevEvent.scrollWidth ||
nextEvent.top !== prevEvent.top ||
nextEvent.left !== prevEvent.left;
Expand Down

0 comments on commit 8868a1e

Please sign in to comment.