Fix: Scroll doesn't propagate by default (PerfectScrollbar)

This commit is contained in:
Sercan Yemen 2017-12-26 10:48:58 +03:00
parent 528fa31df6
commit ca0f46b414

View File

@ -49,7 +49,9 @@ export class FusePerfectScrollbarDirective implements OnInit, AfterViewInit, OnD
} }
// Initialize the perfect-scrollbar // Initialize the perfect-scrollbar
this.ps = new PerfectScrollbar(this.element.nativeElement); this.ps = new PerfectScrollbar(this.element.nativeElement, {
wheelPropagation: true
});
} }
ngOnDestroy() ngOnDestroy()