summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBasilisk-Dev <basiliskdev@protonmail.com>2022-08-29 22:52:03 -0400
committerBasilisk-Dev <basiliskdev@protonmail.com>2022-08-29 22:52:03 -0400
commit7c03d3388231dee25d54b91776cd30ce25ce81eb (patch)
treef93ea1fe4795f58e2e6bbb3a09abf1ac7c99c2ac
parent1e139d0840b95eec68e893716bae8e87bd649348 (diff)
downloadbasilisk-7c03d3388231dee25d54b91776cd30ce25ce81eb.tar.gz
Issue #19 followup - remove DNT from mozscreenshots
We technically don't use mozscreenshots at all, but this should still be removed since it is no longer a valid setting
-rw-r--r--basilisk/tools/mozscreenshots/mozscreenshots/extension/configurations/Preferences.jsm7
1 files changed, 0 insertions, 7 deletions
diff --git a/basilisk/tools/mozscreenshots/mozscreenshots/extension/configurations/Preferences.jsm b/basilisk/tools/mozscreenshots/mozscreenshots/extension/configurations/Preferences.jsm
index aa2b3f2..d7127f9 100644
--- a/basilisk/tools/mozscreenshots/mozscreenshots/extension/configurations/Preferences.jsm
+++ b/basilisk/tools/mozscreenshots/mozscreenshots/extension/configurations/Preferences.jsm
@@ -22,7 +22,6 @@ this.Preferences = {
["paneContent", null],
["paneApplications", null],
["panePrivacy", null],
- ["panePrivacy", null, DNTDialog],
["panePrivacy", null, clearRecentHistoryDialog],
["paneSecurity", null],
["paneSync", null],
@@ -96,12 +95,6 @@ function paintPromise(browserWindow) {
});
}
-function* DNTDialog(aBrowser) {
- yield ContentTask.spawn(aBrowser, null, function* () {
- content.document.getElementById("doNotTrackSettings").click();
- });
-}
-
function* connectionDialog(aBrowser) {
yield ContentTask.spawn(aBrowser, null, function* () {
content.document.getElementById("connectionSettings").click();