|
Lines 1665-1670
Link Here
|
| 1665 |
q_array[x] = q_array[x].toLowerCase(); |
1665 |
q_array[x] = q_array[x].toLowerCase(); |
| 1666 |
var myStopwords = "[% Koha.Preference('NotHighlightedWords') | html %]".toLowerCase().split('|'); |
1666 |
var myStopwords = "[% Koha.Preference('NotHighlightedWords') | html %]".toLowerCase().split('|'); |
| 1667 |
if( $.inArray(q_array[x], myStopwords) == -1 ) { |
1667 |
if( $.inArray(q_array[x], myStopwords) == -1 ) { |
|
|
1668 |
$("#marcnotes").highlight(q_array[x]); |
| 1668 |
$(".title").highlight(q_array[x]); |
1669 |
$(".title").highlight(q_array[x]); |
| 1669 |
$(".author").highlight(q_array[x]); |
1670 |
$(".author").highlight(q_array[x]); |
| 1670 |
$(".results_summary").highlight(q_array[x]); |
1671 |
$(".results_summary").highlight(q_array[x]); |
| 1671 |
- |
|
|