Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2005-12-06 17:44:21 +0300
committerAtsushi Eno <atsushieno@gmail.com>2005-12-06 17:44:21 +0300
commit9d24edc654e81d3eda27bfb37f58f0df0e42117d (patch)
treea026c2a7454d49f86877a7c90cece79388a11284 /web
parentf189af9cc7066168c7762ceb00efd2a5c2717a8c (diff)
2005-12-06 Atsushi Enomoto <atsushi@ximian.com>
* cormissing.js : filtered item needs trim to work. svn path=/trunk/mono/; revision=53982
Diffstat (limited to 'web')
-rw-r--r--web/web/deploy/cm/cormissing.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/web/deploy/cm/cormissing.js b/web/web/deploy/cm/cormissing.js
index aedc19b11db..5c0a9c924bf 100644
--- a/web/web/deploy/cm/cormissing.js
+++ b/web/web/deploy/cm/cormissing.js
@@ -486,7 +486,7 @@ function filterTree ()
var attrFilters = new Object ();
var rgOptions = getChildrenByTagName (document.getElementById ('FilteredAttributes'), "option");
for (i = 0; i < rgOptions.length; i++)
- attrFilters [rgOptions [i].firstChild.nodeValue] = true;
+ attrFilters [rgOptions [i].firstChild.nodeValue.replace (/\s+/g, '')] = true;
viewAll (document.getElementById ('ROOT'), dictTypes, attrFilters);
}