fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
node.contents(), TextNode
[fnpeditor.git]
/
src
/
smartxml
/
smartxml.js
diff --git
a/src/smartxml/smartxml.js
b/src/smartxml/smartxml.js
index
0c76cd2
..
f6fae64
100644
(file)
--- a/
src/smartxml/smartxml.js
+++ b/
src/smartxml/smartxml.js
@@
-23,6
+23,8
@@
var ElementNode = function(nativeNode) {
};
$.extend(ElementNode.prototype, {
};
$.extend(ElementNode.prototype, {
+ nodeType: Node.ELEMENT_NODE,
+
getTagName: function() {
return this.nativeNode.tagName.toLowerCase();
},
getTagName: function() {
return this.nativeNode.tagName.toLowerCase();
},
@@
-36,6
+38,8
@@
$.extend(ElementNode.prototype, {
this._$.contents().each(function() {
if(this.nodeType === Node.ELEMENT_NODE)
toret.push(new ElementNode(this));
this._$.contents().each(function() {
if(this.nodeType === Node.ELEMENT_NODE)
toret.push(new ElementNode(this));
+ else if(this.nodeType === Node.TEXT_NODE)
+ toret.push(new TextNode(this));
});
return toret;
},
});
return toret;
},
@@
-47,6
+51,16
@@
$.extend(ElementNode.prototype, {
});
});
+var TextNode = function(nativeNode) {
+ this.nativeNode = nativeNode;
+ this._$ = $(nativeNode);
+}
+
+$.extend(TextNode.prototype, {
+ nodeType: Node.TEXT_NODE
+})
+
+
return {
documentFromXML: function(xml) {
return new Document(parseXML(xml));
return {
documentFromXML: function(xml) {
return new Document(parseXML(xml));