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(
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;
27 var ua = navigator.userAgent;
29 document.getElementById("buildID").textContent += " " + ua;