Skip to content

Commit

Permalink
Merge pull request #433 from Vastra-Gotalandsregionen/fix/332-dropdow…
Browse files Browse the repository at this point in the history
…n-scroll-should-not-scroll-page

Ställ in perfect scrollbar så att scroll-events inte bubblar till container-element.
  • Loading branch information
herrklaseen authored Aug 14, 2020
2 parents a19ac03 + e0ff2e9 commit 6e0b4a4
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@ export class DropdownSelectComponent implements OnChanges, AfterContentInit, Aft
if (this.formControl != null) {
this.formControl.valueAccessor = this;
}
this.scrollbarConfig = new PerfectScrollbarConfig({ minScrollbarLength: 40 } as PerfectScrollbarConfigInterface);
this.scrollbarConfig = new PerfectScrollbarConfig(
{
minScrollbarLength: 40,
wheelPropagation: false
} as PerfectScrollbarConfigInterface
);
}

ngOnChanges(changes: SimpleChanges) {
Expand Down

0 comments on commit 6e0b4a4

Please sign in to comment.