Skip to content

Commit

Permalink
AG-13343 Fix start/end typo in NavigatorDOMProxy
Browse files Browse the repository at this point in the history
  • Loading branch information
olegat committed Nov 8, 2024
1 parent 2ca12fe commit 19b6857
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class NavigatorDOMProxy {
slider.setPreventsDefault(false);
slider.addListener('drag-start', (target, ev) => this.onDragStart(target, ev, key));
slider.addListener('drag-move', (target, ev) => this.onDrag(target, ev, key));
slider.addListener('drag-start', () => this.updateSliderRatios());
slider.addListener('drag-end', () => this.updateSliderRatios());
}
this.updateSliderRatios();
this.updateVisibility(false);
Expand Down

0 comments on commit 19b6857

Please sign in to comment.