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-11-08 14:39:29 +0300
committerAtsushi Eno <atsushieno@gmail.com>2005-11-08 14:39:29 +0300
commit05645ff090aec2d98dd888dc6dc0036822705176 (patch)
tree2f5688261fb727757d4f2daa063d17de18349aca /web
parentf966614093c0b43a3f1284d6e4e4772792239cce (diff)
2005-11-08 Atsushi Enomoto <atsushi@ximian.com>
* cm/cormissing.cs : fixed one extraneous firstElement() change. It broke clickHandler. svn path=/trunk/mono/; revision=52697
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 ad1f5009ff8..d94f110f737 100644
--- a/web/web/deploy/cm/cormissing.js
+++ b/web/web/deploy/cm/cormissing.js
@@ -132,7 +132,7 @@ function getName (elt)
if (span.innerText)
return span.innerText;
else
- return firstElement (elt).nodeValue;
+ return elt.firstChild.nodeValue;
}
}
return null;