Update Prototype JS to version 1.7.1

.. and fixed namespace conflict in dtree.js (Node => dtreeNode)
This commit is contained in:
Francis Lachapelle
2012-11-13 16:25:20 -05:00
parent 33bd07a53d
commit 8c96f717c0
7 changed files with 2653 additions and 1699 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ Element.addMethods({
if (node.nodeType == Node.TEXT_NODE) {
content += node.nodeValue;
}
else if (node.nodeType == Node.ELEMENT_NODE) {
else if (node.nodeType === Node.ELEMENT_NODE) {
content += Element.allTextContent(node);
}
}