All files / app/assets/javascripts/search_settings constants.js

100% Statements 5/5
100% Branches 0/0
100% Functions 0/0
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  3x     3x     3x     3x     3x  
// 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-100';
 
// used to remove padding for text that matches the * search term
export const NONE_PADDING_CLASS = 'gl-p-0';
 
// How many seconds to wait until the user * stops typing
export const TYPING_DELAY = 400;