12 lines
411 B
JavaScript
12 lines
411 B
JavaScript
|
// We do not consider these nodes in the search index
|
||
|
export const EXCLUDED_NODES = ['OPTION'];
|
||
|
|
||
|
// Used to hide the sections that do not match * the search term
|
||
|
export const HIDE_CLASS = 'gl-display-none';
|
||
|
|
||
|
// used to highlight the text that matches the * search term
|
||
|
export const HIGHLIGHT_CLASS = 'gl-bg-orange-50';
|
||
|
|
||
|
// How many seconds to wait until the user * stops typing
|
||
|
export const TYPING_DELAY = 400;
|