From c02046e64788eb08151f0f615f67260e20b7c8d4 Mon Sep 17 00:00:00 2001 From: David Catmull Date: Tue, 14 Jun 2011 17:20:56 -0600 Subject: [PATCH] JavaScript fix --- html/lib/SearchWebView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/lib/SearchWebView.js b/html/lib/SearchWebView.js index c09aa88..75321e7 100644 --- a/html/lib/SearchWebView.js +++ b/html/lib/SearchWebView.js @@ -32,7 +32,7 @@ function HighlightAllOccurencesOfStringForElement(element,keyword) { } else if (element.nodeType == 1) { // Element node if (element.style.display != "none" && element.nodeName.toLowerCase() != 'select') { for (var i=0; i"+element.childNodes[i].getAttribute('class')); HighlightAllOccurencesOfStringForElement(element.childNodes[i],keyword); }