mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
fix chat view
This commit is contained in:
@ -15,14 +15,16 @@ const chatContactsBody = $('.app-chat-contacts .sidebar-body'),
|
||||
if (chatContactsBody.length) {
|
||||
new PerfectScrollbar(chatContactsBody[0], {
|
||||
wheelPropagation: false,
|
||||
suppressScrollX: true
|
||||
suppressScrollX: true,
|
||||
scrollingThreshold : 200,
|
||||
});
|
||||
}
|
||||
|
||||
if (chatHistoryBody.length) {
|
||||
new PerfectScrollbar(chatHistoryBody[0], {
|
||||
new PerfectScrollbar(document.querySelector('.chat-history-body'), {
|
||||
wheelPropagation: false,
|
||||
suppressScrollX: true
|
||||
suppressScrollX: true,
|
||||
scrollingThreshold : 200,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user