summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorAndré Silva <emulatorman@hyperbola.info>2018-07-31 04:01:57 -0300
committerAndré Silva <emulatorman@hyperbola.info>2018-07-31 04:01:57 -0300
commitfc67d775d5f1c2d89c5707a5e8abe5f8c558b438 (patch)
tree7219884af9b0d8a7caf7738657b9e86342305768 /base
parent01287893e489d87c290cb39e71dd7c06ac70248a (diff)
downloadiceweasel-uxp-fc67d775d5f1c2d89c5707a5e8abe5f8c558b438.tar.gz
Add missing versionField.textContent in aboutDialog.js
Diffstat (limited to 'base')
-rw-r--r--base/content/aboutDialog.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/base/content/aboutDialog.js b/base/content/aboutDialog.js
index 9addf9f..4336477 100644
--- a/base/content/aboutDialog.js
+++ b/base/content/aboutDialog.js
@@ -42,6 +42,7 @@ function init(aEvent)
let versionField = document.getElementById("version");
let version = Services.appinfo.version;
+ versionField.textContent = version;
// Append "(32-bit)" or "(64-bit)" build architecture to the version number:
let bundle = Services.strings.createBundle("chrome://browser/locale/browser.properties");