From 20b689d015ea5743099bdafcac0c6ca6519c22db Mon Sep 17 00:00:00 2001 From: hackademix Date: Fri, 1 Feb 2019 01:16:33 +0100 Subject: Fallback XSS filtering to XSS Auditor since asynchronous webRequest handlers are not supported by Chromium. --- src/ui/options.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ui/options.js') diff --git a/src/ui/options.js b/src/ui/options.js index 31cf5c3..a3f7fe8 100644 --- a/src/ui/options.js +++ b/src/ui/options.js @@ -8,9 +8,9 @@ let version = browser.runtime.getManifest().version; document.querySelector("#version").textContent = _("Version", version); // simple general options - + let opt = UI.wireOption; - + opt("global", o => { if (o) { policy.enforced = !o.checked; @@ -96,7 +96,7 @@ } let button = document.querySelector("#btn-delete-xss-choices"); let choices = UI.xssUserChoices; - button.disabled = Object.keys(choices).length === 0; + button.disabled = !choices || Object.keys(choices).length === 0; button.onclick = () => { UI.updateSettings({ xssUserChoices: {} -- cgit v1.2.3