14 lines
254 B
JavaScript
14 lines
254 B
JavaScript
// DO NOT EDIT THIS FILE!!!
|
|
// Update it by running `rake javascript:update_constants`
|
|
|
|
export const SEARCH_PRIORITIES = {
|
|
ignore: 1,
|
|
very_low: 2,
|
|
low: 3,
|
|
normal: 0,
|
|
high: 4,
|
|
very_high: 5,
|
|
};
|
|
|
|
export const SEARCH_PHRASE_REGEXP = '"([^"]+)"';
|