File tree 1 file changed +5
-5
lines changed
src/cdk-experimental/ui-patterns/nav 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -80,11 +80,11 @@ export class NavPattern<V> {
80
80
/** The keydown event manager for the nav. */
81
81
keydown = computed ( ( ) => {
82
82
return new KeyboardEventManager ( )
83
- . on ( this . prevKey , ( ) => this . prev ( { selectOne : true } ) )
84
- . on ( this . nextKey , ( ) => this . next ( { selectOne : true } ) )
85
- . on ( 'Home' , ( ) => this . first ( { selectOne : true } ) )
86
- . on ( 'End' , ( ) => this . last ( { selectOne : true } ) )
87
- . on ( this . typeaheadRegexp , e => this . search ( e . key , { selectOne : true } ) )
83
+ . on ( this . prevKey , ( ) => this . prev ( ) )
84
+ . on ( this . nextKey , ( ) => this . next ( ) )
85
+ . on ( 'Home' , ( ) => this . first ( ) )
86
+ . on ( 'End' , ( ) => this . last ( ) )
87
+ . on ( this . typeaheadRegexp , e => this . search ( e . key ) )
88
88
. on ( this . dynamicSpaceKey , ( ) => this . selection . selectOne ( ) ) // Activate link
89
89
. on ( 'Enter' , ( ) => this . selection . selectOne ( ) ) ; // Activate link
90
90
} ) ;
You can’t perform that action at this time.
0 commit comments