Merge branch '3.8.0-translation' of git://git.tamil.fr/git/koha
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / lib / jquery / plugins / jquery.highlight-3.js
1 /*
2
3 highlight v3
4
5 Highlights arbitrary terms.
6
7 <http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html>
8
9 MIT license.
10
11 Johann Burkard
12 <http://johannburkard.de>
13 <mailto:jb@eaio.com>
14
15 */
16
17 jQuery.fn.highlight = function(pat) {
18  function innerHighlight(node, pat) {
19   var skip = 0;
20   if (node.nodeType == 3) {
21    var pos = node.data.toUpperCase().indexOf(pat);
22    if (pos >= 0) {
23     var spannode = document.createElement('span');
24     spannode.className = 'term';
25     var middlebit = node.splitText(pos);
26     var endbit = middlebit.splitText(pat.length);
27     var middleclone = middlebit.cloneNode(true);
28     spannode.appendChild(middleclone);
29     middlebit.parentNode.replaceChild(spannode, middlebit);
30     skip = 1;
31    }
32   }
33   else if (node.nodeType == 1 && node.childNodes && !/(script|style)/i.test(node.tagName)) {
34    for (var i = 0; i < node.childNodes.length; ++i) {
35     i += innerHighlight(node.childNodes[i], pat);
36    }
37   }
38   return skip;
39  }
40  return this.each(function() {
41   innerHighlight(this, pat.toUpperCase());
42  });
43 };
44
45 jQuery.fn.removeHighlight = function() {
46  return this.find("span.term").each(function() {
47   this.parentNode.firstChild.nodeName;
48   with (this.parentNode) {
49    replaceChild(this.firstChild, this);
50    normalize();
51   }
52  }).end();
53 };