Lines 1345-1350
Link Here
|
1345 |
var x; |
1345 |
var x; |
1346 |
for (x in q_array) { |
1346 |
for (x in q_array) { |
1347 |
q_array[x] = q_array[x].replace(/\w*:([\w])/, "$1"); |
1347 |
q_array[x] = q_array[x].replace(/\w*:([\w])/, "$1"); |
|
|
1348 |
if (q_array[x].length == 0) { |
1349 |
continue; |
1350 |
} |
1348 |
q_array[x] = q_array[x].toLowerCase(); |
1351 |
q_array[x] = q_array[x].toLowerCase(); |
1349 |
var myStopwords = "[% Koha.Preference('NotHighlightedWords') %]".toLowerCase().split('|'); |
1352 |
var myStopwords = "[% Koha.Preference('NotHighlightedWords') %]".toLowerCase().split('|'); |
1350 |
if( $.inArray(q_array[x], myStopwords) == -1 ) { |
1353 |
if( $.inArray(q_array[x], myStopwords) == -1 ) { |
1351 |
- |
|
|