Followup fixes to bug 759422 to end the CLOSED TREE, r=BenB and bustage.

This commit is contained in:
Joshua Cranmer 2013-02-03 22:55:15 -06:00
Родитель 42cb66151e
Коммит 07e2aee4c3
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -178,7 +178,10 @@ TracingListener.prototype = {
let data = this.chunks.join("");
// Attempt to derive email account information
let accountConfig = accountCreationFuncs.readFromXML(JXON.build(data));
let domParser = Cc["@mozilla.org/xmlextras/domparser;1"]
.createInstance(Ci.nsIDOMParser);
let accountConfig = accountCreationFuncs.readFromXML(JXON.build(
domParser.parseFromString(data, "text/xml")));
accountCreationFuncs.replaceVariables(accountConfig,
this.params.realName,
this.params.email);

Просмотреть файл

@ -6,8 +6,6 @@
// <https://developer.mozilla.org/en-US/docs/JXON>
var EXPORTED_SYMBOLS = ["JXON"];
let Cc = Components.classes;
let Ci = Components.interfaces;
const JXON = new (function() {
const sValueProp = "value"; /* you can customize these values */