diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2017-08-11 00:28:41 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-21 20:10:22 +0100 |
commit | 580ebc105678c6d01cf64e7d75116d77984024a0 (patch) | |
tree | 5f9c8d20f26be994c992fc430edc9d195fc279bd /browser/base/content/aboutDialog.js | |
parent | ef9aeb6a08749ecc43242ba523d67632a6ddc0dc (diff) | |
download | UXP-580ebc105678c6d01cf64e7d75116d77984024a0.tar UXP-580ebc105678c6d01cf64e7d75116d77984024a0.tar.gz UXP-580ebc105678c6d01cf64e7d75116d77984024a0.tar.lz UXP-580ebc105678c6d01cf64e7d75116d77984024a0.tar.xz UXP-580ebc105678c6d01cf64e7d75116d77984024a0.zip |
Replace display version in about box with build ID.
Diffstat (limited to 'browser/base/content/aboutDialog.js')
-rw-r--r-- | browser/base/content/aboutDialog.js | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/browser/base/content/aboutDialog.js b/browser/base/content/aboutDialog.js index b024d2d52..55d8ff262 100644 --- a/browser/base/content/aboutDialog.js +++ b/browser/base/content/aboutDialog.js @@ -40,16 +40,17 @@ function init(aEvent) // Pref is unset } - // Include the build ID and display warning if this is an "a#" (nightly or aurora) build + // Include the build ID let versionField = document.getElementById("version"); let version = Services.appinfo.version; + let buildID = Services.appinfo.appBuildID; + let year = buildID.slice(0, 4); + let month = buildID.slice(4, 6); + let day = buildID.slice(6, 8); + versionField.textContent = buildID + ` (${year}-${month}-${day})`; + + // Display warning if this is an "a#" (nightly or aurora) build if (/a\d+$/.test(version)) { - let buildID = Services.appinfo.appBuildID; - let year = buildID.slice(0, 4); - let month = buildID.slice(4, 6); - let day = buildID.slice(6, 8); - versionField.textContent += ` (${year}-${month}-${day})`; - document.getElementById("experimental").hidden = false; document.getElementById("communityDesc").hidden = true; } |