no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / toolkit / content / about.js
blob469f77b8d534879f35513bee4562f66678f31edc
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 // get release notes and vendor URL from prefs
6 var releaseNotesURL = Services.urlFormatter.formatURLPref(
7   "app.releaseNotesURL"
8 );
9 if (releaseNotesURL != "about:blank") {
10   var relnotes = document.getElementById("releaseNotesURL");
11   relnotes.setAttribute("href", releaseNotesURL);
12   relnotes.parentNode.removeAttribute("hidden");
15 var vendorURL = Services.urlFormatter.formatURLPref("app.vendorURL");
16 if (vendorURL != "about:blank") {
17   var vendor = document.getElementById("vendorURL");
18   vendor.setAttribute("href", vendorURL);
21 // insert the version of the XUL application (!= XULRunner platform version)
22 var versionNum = Services.appinfo.version;
23 var version = document.getElementById("version");
24 version.textContent += " " + versionNum;
26 // append user agent
27 var ua = navigator.userAgent;
28 if (ua) {
29   document.getElementById("buildID").textContent += " " + ua;