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 916c32e commit 921ebf6Copy full SHA for 921ebf6
src/lib/list/selection-list.ts
@@ -38,7 +38,7 @@ export const _MdSelectionListMixinBase = mixinDisabled(MdSelectionListBase);
38
'[attr.tabindex]': '_tabIndex',
39
'class': 'mat-selection-list',
40
'(focus)': 'focus()',
41
- '(keydown)': 'keydown($event)',
+ '(keydown)': '_keydown($event)',
42
'[attr.aria-disabled]': 'disabled.toString()'},
43
template: '<ng-content></ng-content>',
44
styleUrls: ['list.css'],
@@ -141,7 +141,7 @@ export class MdSelectionList extends _MdSelectionListMixinBase
141
}
142
143
/** Passes relevant key presses to our key manager. */
144
- keydown(event: KeyboardEvent) {
+ _keydown(event: KeyboardEvent) {
145
switch (event.keyCode) {
146
case SPACE:
147
this._toggleSelectOnFocusedOption();
0 commit comments