Correct typo in #2272

This commit is contained in:
Jermolene 2016-02-05 19:03:58 +00:00
parent d1d41fb9fc
commit 6aac2b00c9
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ exports["application/enex+xml"] = function(text,fields) {
tags: Array.prototype.slice.call(noteNode.querySelectorAll("tag")).map(function(tag) { return tag.textContent; }).join(","),
text: noteNode.querySelector("content").textContent
};
$tw.utils.each(noteNodes.querySelector("note-attributes").childNodes,function(attrNode) {
$tw.utils.each(noteNode.querySelector("note-attributes").childNodes,function(attrNode) {
result[attrNode.tagName] = attrNode.textContent;
});
results.push(result);