We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbd64b6 commit 110ebe0Copy full SHA for 110ebe0
src/lib/core/ripple/ripple-renderer.ts
@@ -191,9 +191,9 @@ export class RippleRenderer {
191
192
this._isMousedown = false;
193
194
- // Fade-out all ripples that are completely visible and not persistent.
+ // Fade-out all ripples that are not persistent.
195
this._activeRipples.forEach(ripple => {
196
- if (!ripple.config.persistent && ripple.state === RippleState.VISIBLE) {
+ if (!ripple.config.persistent) {
197
ripple.fadeOut();
198
}
199
});
0 commit comments