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 7fe37e5 commit e48c60aCopy full SHA for e48c60a
src/lib/core/ripple/ripple-renderer.ts
@@ -193,9 +193,9 @@ export class RippleRenderer {
193
private onMouseup() {
194
this._isMousedown = false;
195
196
- // Fade-out all ripples that are completely visible and not persistent.
+ // Fade-out all ripples that are not persistent.
197
this._activeRipples.forEach(ripple => {
198
- if (!ripple.config.persistent && ripple.state === RippleState.VISIBLE) {
+ if (!ripple.config.persistent) {
199
ripple.fadeOut();
200
}
201
});
0 commit comments