File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -228,18 +228,18 @@ export class MdSelectionList implements AfterContentInit, OnDestroy {
228
228
/** The option components contained within this selection-list. */
229
229
options : QueryList < MdListOption > ;
230
230
231
- // options which are selected.
231
+ /** options which are selected. */
232
232
selectedOptions : SelectionModel < MdListOption > = new SelectionModel < MdListOption > ( true ) ;
233
233
234
234
/**
235
235
* Whether the ripple effect should be disabled on the list-items or not.
236
- * This flag only has an effect for `md-nav -list` components.
236
+ * This flag only has an effect for `mat-selection -list` components.
237
237
*/
238
238
@Input ( )
239
239
get disableRipple ( ) { return this . _disableRipple ; }
240
240
set disableRipple ( value : boolean ) { this . _disableRipple = coerceBooleanProperty ( value ) ; }
241
241
242
- // Whether the selection-list is disabled
242
+ /** Whether the selection-list is disabled */
243
243
@Input ( )
244
244
get disabled ( ) { return this . _disabled ; }
245
245
set disabled ( value : any ) { this . _disabled = coerceBooleanProperty ( value ) ; }
You can’t perform that action at this time.
0 commit comments