Scroll to start of conversation
This commit is contained in:
parent
93086843ea
commit
9cb36b9568
@ -1204,6 +1204,17 @@ export default class ChatBubbles {
|
||||
forceDuration?: number
|
||||
) {
|
||||
// * 4 = .25rem
|
||||
const bubble = findUpClassName(element, 'bubble');
|
||||
|
||||
// * if it's a start, then scroll to start of the group
|
||||
if(position === 'center' && whichChild(bubble) === (this.stickyIntersector ? 2 : 1)) {
|
||||
const dateGroup = bubble.parentElement;
|
||||
if(whichChild(dateGroup) === 0) {
|
||||
element = dateGroup;
|
||||
position = 'start';
|
||||
}
|
||||
}
|
||||
|
||||
return this.scrollable.scrollIntoViewNew(element, position, 4, undefined, forceDirection, forceDuration);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user