diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-05-22 20:30:05 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-05-22 20:30:05 -0400 |
commit | 5bd475d53ab97f79bfcee2eeda8273251044af77 (patch) | |
tree | c90901216d11df93dd72170d9289a9b8a4eff95e /components | |
parent | 42ee1a92926c16a631cf7c34ff5d63b4f7785ca0 (diff) | |
download | iceweasel-uxp-5bd475d53ab97f79bfcee2eeda8273251044af77.tar.gz |
Fix typo during backport of UXP #812: missing gSecurityPane
Diffstat (limited to 'components')
-rw-r--r-- | components/preferences/in-content/preferences.js | 3 |
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)); |