diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-04-11 17:30:34 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-04-11 17:30:34 +0200 |
commit | ac05ab923af8bc5b0c077fe3a271492af19dbea8 (patch) | |
tree | bfb3033422c8035480bfeabe0c34eafc8649c617 | |
parent | 70974f59f363282b802ffb0b5c855421ee62ec43 (diff) | |
download | UXP-ac05ab923af8bc5b0c077fe3a271492af19dbea8.tar UXP-ac05ab923af8bc5b0c077fe3a271492af19dbea8.tar.gz UXP-ac05ab923af8bc5b0c077fe3a271492af19dbea8.tar.lz UXP-ac05ab923af8bc5b0c077fe3a271492af19dbea8.tar.xz UXP-ac05ab923af8bc5b0c077fe3a271492af19dbea8.zip |
Fix aboutSupport.js
Addresses comments:
https://github.com/MoonchildProductions/UXP/commit/bf6bb142fc5bcb49b053788e06160af304f639e5#commitcomment-28527974
https://github.com/MoonchildProductions/UXP/commit/0f99df52d5309158c7b916581c5a79496b1844db#commitcomment-28527792
-rw-r--r-- | toolkit/content/aboutSupport.js | 16 | ||||
-rw-r--r-- | toolkit/content/jar.mn | 2 |
2 files changed, 1 insertions, 17 deletions
diff --git a/toolkit/content/aboutSupport.js b/toolkit/content/aboutSupport.js index 5daf6d189..97b795b5b 100644 --- a/toolkit/content/aboutSupport.js +++ b/toolkit/content/aboutSupport.js @@ -151,22 +151,6 @@ var snapshotFormatters = { })); }, - experiments: function experiments(data) { - $.append($("experiments-tbody"), data.map(function (experiment) { - return $.new("tr", [ - $.new("td", experiment.name), - $.new("td", experiment.id), - $.new("td", experiment.description), - $.new("td", experiment.active), - $.new("td", experiment.endDate), - $.new("td", [ - $.new("a", experiment.detailURL, null, {href : experiment.detailURL, }) - ]), - $.new("td", experiment.branch), - ]); - })); - }, - modifiedPreferences: function modifiedPreferences(data) { $.append($("prefs-tbody"), sortedArrayFromObject(data).map( function ([name, value]) { diff --git a/toolkit/content/jar.mn b/toolkit/content/jar.mn index 946e499f1..f9ac19a24 100644 --- a/toolkit/content/jar.mn +++ b/toolkit/content/jar.mn @@ -28,7 +28,7 @@ toolkit.jar: content/global/aboutwebrtc/aboutWebrtc.css (aboutwebrtc/aboutWebrtc.css) content/global/aboutwebrtc/aboutWebrtc.js (aboutwebrtc/aboutWebrtc.js) content/global/aboutwebrtc/aboutWebrtc.html (aboutwebrtc/aboutWebrtc.html) - content/global/aboutSupport.js +* content/global/aboutSupport.js * content/global/aboutSupport.xhtml content/global/aboutTelemetry.js content/global/aboutTelemetry.xhtml |