From 00039bf6c5f120341d9f1c645b74d217eb25ba56 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Thu, 16 Oct 2008 00:04:49 +0000 Subject: [PATCH] Fix completion filter highlighting wrt white space collapsing. --- content/template.js | 1 + 1 file changed, 1 insertion(+) diff --git a/content/template.js b/content/template.js index 803bb5d2..c39d06eb 100644 --- a/content/template.js +++ b/content/template.js @@ -90,6 +90,7 @@ const template = { let i; while ((i = lcstr.indexOf(lcfilter, start)) > -1) { + XML.ignoreWhitespace = false; s += <>{str.substring(start, i)}; s += {str.substr(i, filter.length)}; start = i + filter.length;