Skip to content

Commit

Permalink
Fix bug in XML parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
genemars committed Feb 20, 2022
1 parent 0606240 commit c10f8d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/app.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion source/pages/home/items_list.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ zuix.controller(function(cp) {
if (node.length() > 0) node = node.get();
if (node != null && node.firstChild != null) {
// get rid of CDATA wrapper eventually
text = node.firstChild.nodeValue;
text = node.firstChild.wholeText;
} else if (node != null) {
// get value as is
text = node.innerHTML;
Expand Down

0 comments on commit c10f8d4

Please sign in to comment.