Skip to content

Commit 936c580

Browse files
committed
fixup! refactor(material/core): generalize lazy ripple logic
1 parent 5f3b3ab commit 936c580

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/material/core/private/ripple-loader.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ const eventListenerOptions = {capture: true};
2525
const rippleInteractionEvents = ['focus', 'click', 'mouseenter', 'touchstart'];
2626

2727
/** The attribute attached to a component whose ripple has not yet been initialized. */
28-
const matRippleUninitialized = 'mat-ripple-uninitialized';
28+
const matRippleUninitialized = 'mat-ripple-loader-uninitialized';
2929

3030
/** Additional classes that should be added to the ripple when it is rendered. */
31-
const matRippleClassName = 'mat-ripple-class-name';
31+
const matRippleClassName = 'mat-ripple-loader-class-name';
3232

3333
/** Whether the ripple should be centered. */
34-
const matRippleCentered = 'mat-ripple-centered';
34+
const matRippleCentered = 'mat-ripple-loader-centered';
3535

3636
/** Whether the ripple should be disabled. */
37-
const matRippleDisabled = 'mat-ripple-disabled';
37+
const matRippleDisabled = 'mat-ripple-loader-disabled';
3838

3939
/**
4040
* Handles attaching ripples on demand.

0 commit comments

Comments
 (0)