Skip to content

Commit

Permalink
fix(material/forms): fix page slider wheel event
Browse files Browse the repository at this point in the history
  • Loading branch information
robzan8 committed Aug 1, 2023
1 parent 6e3f24b commit 2ff6e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/material/page-slider/src/page-slider.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="ajf-page-slider-content">
<div #body [ngClass]="'ajf-page-slider-' + orientation" (touchstart)="onTouchStart($event)"
(touchmove)="onTouchMove($event)" (touchend)="onTouchEnd()" (mousewheel)="onMouseWheel($event)"
(touchmove)="onTouchMove($event)" (touchend)="onTouchEnd()" (wheel)="onMouseWheel($event)"
class="ajf-page-slider-body">
<ng-content></ng-content>
</div>
Expand Down

0 comments on commit 2ff6e00

Please sign in to comment.