Skip to content

Commit

Permalink
fix(grid): add alt+l symbol under mac Closes #7287
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandyr committed Oct 30, 2020
1 parent e492c1b commit 48bf439
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion projects/igniteui-angular/src/lib/core/utils.ts
Expand Up @@ -350,7 +350,9 @@ export const NAVIGATION_KEYS = new Set([
export const ROW_EXPAND_KEYS = new Set('right down arrowright arrowdown'.split(' '));
export const ROW_COLLAPSE_KEYS = new Set('left up arrowleft arrowup'.split(' '));
export const SUPPORTED_KEYS = new Set([...Array.from(NAVIGATION_KEYS), 'enter', 'f2', 'escape', 'esc', 'pagedown', 'pageup', '+', 'add']);
export const HEADER_KEYS = new Set([...Array.from(NAVIGATION_KEYS), 'escape', 'esc' , 'l']);
export const HEADER_KEYS = new Set([...Array.from(NAVIGATION_KEYS), 'escape', 'esc' , 'l',
/** This symbol corresponds to the Alt + L combination under MAC. */
'¬']);

/**
* @hidden
Expand Down

0 comments on commit 48bf439

Please sign in to comment.