We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6169bff commit bc00bdfCopy full SHA for bc00bdf
static/privacy.html
@@ -73,9 +73,9 @@ <h2>turbowarp.org</h2>
73
}
74
};
75
const checkbox = document.querySelector('.windchimes-optout');
76
- checkbox.checked = isOptedOut();
+ checkbox.checked = !isOptedOut();
77
checkbox.addEventListener('change', (e) => {
78
- setOptedOut(e.target.checked);
+ setOptedOut(!e.target.checked);
79
});
80
})();
81
</script>
0 commit comments