mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-14 12:54:54 +00:00
Update Prototype JS to version 1.7.1
.. and fixed namespace conflict in dtree.js (Node => dtreeNode)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user