diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-13 20:55:39 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-13 20:55:39 +0200 |
commit | 0b26d810bdb8ce46fb68f3057e551583f085848d (patch) | |
tree | 58db08baf248725bb1c1fe67318c51f870fd6c9e /toolkit/content/about.js | |
parent | 314016db7f55d24ad9d23197ca56462e78bc9ecc (diff) | |
download | UXP-0b26d810bdb8ce46fb68f3057e551583f085848d.tar UXP-0b26d810bdb8ce46fb68f3057e551583f085848d.tar.gz UXP-0b26d810bdb8ce46fb68f3057e551583f085848d.tar.lz UXP-0b26d810bdb8ce46fb68f3057e551583f085848d.tar.xz UXP-0b26d810bdb8ce46fb68f3057e551583f085848d.zip |
moebius#173: Fix up "about:" page
https://github.com/MoonchildProductions/moebius/issues/173
Diffstat (limited to 'toolkit/content/about.js')
-rw-r--r-- | toolkit/content/about.js | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/toolkit/content/about.js b/toolkit/content/about.js index ae467d07a..c27916c10 100644 --- a/toolkit/content/about.js +++ b/toolkit/content/about.js @@ -5,14 +5,24 @@ // get release notes and vendor URL from prefs var formatter = Components.classes["@mozilla.org/toolkit/URLFormatterService;1"] .getService(Components.interfaces.nsIURLFormatter); -var releaseNotesURL = formatter.formatURLPref("app.releaseNotesURL"); +var releaseNotesURL; +try { + releaseNotesURL = formatter.formatURLPref("app.releaseNotesURL"); +} catch(e) { + releaseNotesURL = "about:blank"; +} if (releaseNotesURL != "about:blank") { var relnotes = document.getElementById("releaseNotesURL"); relnotes.setAttribute("href", releaseNotesURL); relnotes.parentNode.removeAttribute("hidden"); } -var vendorURL = formatter.formatURLPref("app.vendorURL"); +var vendorURL; +try { + vendorURL = formatter.formatURLPref("app.vendorURL"); +} catch(e) { + vendorURL = "about:blank"; +} if (vendorURL != "about:blank") { var vendor = document.getElementById("vendorURL"); vendor.setAttribute("href", vendorURL); @@ -25,8 +35,15 @@ var versionNum = Components.classes["@mozilla.org/xre/app-info;1"] var version = document.getElementById("version"); version.textContent += " " + versionNum; +// insert the buildid of the XUL application +var BuildIDVal = Components.classes["@mozilla.org/xre/app-info;1"] + .getService(Components.interfaces.nsIXULAppInfo) + .appBuildID; +var buildID = document.getElementById("buildID"); +buildID.textContent += " " + BuildIDVal.slice(0,-6); + // append user agent var ua = navigator.userAgent; if (ua) { - document.getElementById("buildID").textContent += " " + ua; + document.getElementById("userAgent").textContent += " " + ua; } |