summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2019-05-22 20:30:05 -0400
committerGaming4JC <g4jc@hyperbola.info>2019-05-22 20:30:05 -0400
commit5bd475d53ab97f79bfcee2eeda8273251044af77 (patch)
treec90901216d11df93dd72170d9289a9b8a4eff95e
parent42ee1a92926c16a631cf7c34ff5d63b4f7785ca0 (diff)
downloadiceweasel-uxp-5bd475d53ab97f79bfcee2eeda8273251044af77.tar.gz
Fix typo during backport of UXP #812: missing gSecurityPane
-rw-r--r--components/preferences/in-content/preferences.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/preferences/in-content/preferences.js b/components/preferences/in-content/preferences.js
index 52bda1a..69cb180 100644
--- a/components/preferences/in-content/preferences.js
+++ b/components/preferences/in-content/preferences.js
@@ -66,8 +66,9 @@ function init_all() {
register_module("paneContent", gContentPane);
#ifdef MOZ_SERVICES_SYNC
register_module("paneSync", gSyncPane);
- register_module("paneSecurity", gSecurityPane);
#endif
+ register_module("paneSecurity", gSecurityPane);
+
let categories = document.getElementById("categories");
categories.addEventListener("select", event => gotoPref(event.target.value));