1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-16 03:55:48 +01:00

Death to E4X and stuff.

This commit is contained in:
Kris Maglione
2012-11-29 18:00:50 -08:00
parent 2e17932cdb
commit 810eda169a
15 changed files with 265 additions and 45 deletions

View File

@@ -13,7 +13,7 @@ defineModule("addons", {
});
this.lazyRequire("completion", ["completion"]);
lazyRequire("template", ["template"]);
lazyRequire("template", ["template", "template_"]);
var callResult = function callResult(method) {
let args = Array.slice(arguments, 1);
@@ -220,7 +220,7 @@ var Addon = Class("Addon", {
DOM(node).append(isArray(xml) || isXML(xml) ? xml : DOM.DOMString(xml));
}
update("name", template.icon({ icon: this.iconURL }, this.name));
update("name", template_.icon({ icon: this.iconURL }, this.name));
this.nodes.version.textContent = this.version;
update("status", this.statusInfo);
this.nodes.description.textContent = this.description;