Allow vertical scrollbars to be disabled (user preferences, visible by default)

This commit is contained in:
Nadav Tasher 2024-12-30 23:22:54 +02:00
parent f1810e47e0
commit 3e01231874
11 changed files with 61 additions and 4 deletions

View file

@ -231,6 +231,11 @@ BlazeComponent.extendComponent({
);
},
isVerticalScrollbars() {
const user = ReactiveCache.getCurrentUser();
return user && user.isVerticalScrollbars();
},
cardDetailsPopup(event) {
if (!Popup.isOpen()) {
Popup.open("cardDetails")(event);