-
Notifications
You must be signed in to change notification settings - Fork 6.8k
refactor(selection-list): use disable-ripple mixin #6692
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(selection-list): use disable-ripple mixin #6692
Conversation
* Switches the `disableRipple` getter/setter with the `disableRipple` mixin from core. * Prefixes the `isRippleEnabled` method with an underscore to hide it from the API docs.
src/lib/list/list.ts
Outdated
@@ -156,7 +156,7 @@ export class MdListItem extends _MdListItemMixinBase implements AfterContentInit | |||
} | |||
|
|||
/** Whether this list item should show a ripple effect when clicked. */ | |||
isRippleEnabled() { | |||
_isRippleEnabled() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps rename this to _rippleDisabled
so it matches the mixin name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah that might be easier for the template as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, but named it _isRippleDisabled
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
disableRipple
getter/setter with thedisableRipple
mixin from core (payload reduction)isRippleEnabled
method with an underscore to hide it from the API docs.