Skip to content

Commit

Permalink
chore(ripple): remove directive click handler
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 510550957
  • Loading branch information
asyncLiz authored and copybara-github committed Feb 18, 2023
1 parent 2da0f1a commit df6a723
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ripple/directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class RippleDirective extends Directive {
private checkBoundsAfterContextMenu = false;
private rippleStartEvent: PointerEvent|null = null;
private touchTimer: number|null = null;
private clickTimer: number|null = null;

constructor(partInfo: PartInfo) {
super(partInfo);
Expand Down Expand Up @@ -139,10 +138,6 @@ class RippleDirective extends Directive {
clearTimeout(this.touchTimer);
this.touchTimer = null;
}
if (this.clickTimer) {
clearTimeout(this.clickTimer);
this.clickTimer = null;
}
}

private waitForTouchHold(ripple: Ripple) {
Expand Down

0 comments on commit df6a723

Please sign in to comment.