Skip to content

Commit

Permalink
Fix toJson to convert boolean and functions in right formats.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonytomov committed Feb 13, 2012
1 parent f4a2e45 commit 7a2e96a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/JsonXml.js
Expand Up @@ -263,7 +263,7 @@ var xmlJsonClass = {
//}
}
else {
json += (name && ":") + "\"" + o.toString()+ "\"";
json += (name && ":") + o.toString();
}
return json;
},
Expand Down

0 comments on commit 7a2e96a

Please sign in to comment.