mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-01 23:03:55 -08:00
Fixed problem with property names that need quoting
This commit is contained in:
parent
ddfa6732a6
commit
6f027c3b49
1 changed files with 2 additions and 1 deletions
|
|
@ -103,8 +103,9 @@ JavaScriptParseTree.prototype.renderNode = function(output,node) {
|
|||
output.push("}");
|
||||
break;
|
||||
case "PropertyAssignment":
|
||||
output.push("'");
|
||||
output.push(node.name);
|
||||
output.push(":");
|
||||
output.push("':");
|
||||
this.renderNode(output,node.value);
|
||||
break;
|
||||
case "BinaryExpression":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue