diff options
author | hackademix | 2019-03-15 23:34:09 +0100 |
---|---|---|
committer | hackademix | 2019-03-15 23:34:09 +0100 |
commit | c3c3a6a76921594d130d1cd638c5111cea820145 (patch) | |
tree | 450c8053d1504e8312533ec01e28114a4115f736 /src | |
parent | 6edf62ca1298a7e556216997c602646c8c23f27a (diff) | |
download | noscript-c3c3a6a76921594d130d1cd638c5111cea820145.tar.gz noscript-c3c3a6a76921594d130d1cd638c5111cea820145.tar.xz noscript-c3c3a6a76921594d130d1cd638c5111cea820145.zip |
Remove double quotes around property names for consistency.
Diffstat (limited to 'src')
-rw-r--r-- | src/bg/Defaults.js | 12 |
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));
|