summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhackademix2019-03-15 23:34:09 +0100
committerhackademix2019-03-15 23:34:09 +0100
commitc3c3a6a76921594d130d1cd638c5111cea820145 (patch)
tree450c8053d1504e8312533ec01e28114a4115f736
parent6edf62ca1298a7e556216997c602646c8c23f27a (diff)
downloadnoscript-c3c3a6a76921594d130d1cd638c5111cea820145.tar.gz
noscript-c3c3a6a76921594d130d1cd638c5111cea820145.tar.xz
noscript-c3c3a6a76921594d130d1cd638c5111cea820145.zip
Remove double quotes around property names for consistency.
-rw-r--r--src/bg/Defaults.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bg/Defaults.js b/src/bg/Defaults.js
index 892ee40..e30380b 100644
--- a/src/bg/Defaults.js
+++ b/src/bg/Defaults.js
@@ -10,12 +10,12 @@ var Defaults = {
showFullAddresses: false,
},
sync: {
- "global": false,
- "xss": true,
- "xssScanRequestBody": true,
- "xssBlockUnscannedPOST": false,
- "overrideTorBrowserPolicy": false, // note: Settings.update() on reset will flip this to true
- "clearclick": true,
+ global: false,
+ xss: true,
+ xssScanRequestBody: true,
+ xssBlockUnscannedPOST: false,
+ overrideTorBrowserPolicy: false, // note: Settings.update() on reset will flip this to true
+ clearclick: true,
}
};
let defaultsClone = JSON.parse(JSON.stringify(defaults));