Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Commit

Permalink
fix(ripple): Fix ripple active surface detection
Browse files Browse the repository at this point in the history
Closes #440
  • Loading branch information
trimox committed Dec 13, 2017
1 parent ecdea6a commit 6918c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/core/ripple/ripple.orchestration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export abstract class MdcRippleOrchestration {
}

isSurfaceActive(): boolean {
return this.activeSurface || this.elementRef.nativeElement[util.getMatchesProperty(HTMLElement.prototype)](':active');
return this.elementRef.nativeElement[util.getMatchesProperty(HTMLElement.prototype)](':active');
}

isUnbounded(): boolean {
Expand Down

0 comments on commit 6918c1f

Please sign in to comment.