Skip to content

Commit

Permalink
chore(ripple): remove prefix specific filtering for changes (#7903)
Browse files Browse the repository at this point in the history
  • Loading branch information
devversion authored and josephperrott committed Nov 10, 2017
1 parent 9eda324 commit d35436b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/core/ripple/ripple.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class MatRipple implements OnChanges, OnDestroy {
}

ngOnChanges(changes: SimpleChanges) {
if ((changes['trigger'] || changes['_matRippleTrigger']) && this.trigger) {
if (changes['trigger'] && this.trigger) {
this._rippleRenderer.setTriggerElement(this.trigger);
}

Expand Down

0 comments on commit d35436b

Please sign in to comment.