Skip to content

Commit 0c31c8e

Browse files
committed
PR review
1 parent 0363eb5 commit 0c31c8e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/website/ccpa-modal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export function CCPAModal() {
22
document.addEventListener("DOMContentLoaded", function () {
3-
if(window.location.hash.substring(1) === 'your-privacy-choices') {
3+
if(window.location.hash.includes('your-privacy-choices')) {
44
document.querySelector("#ccpa-modal").style.display = "block";
55
}
66
document.querySelector("#open-ccpa").addEventListener("click", () => {

views/website/layout.pug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ html(lang='en')
7171
p If you wish to opt out of this sharing of your personal data in connection with cookies, please update your
7272
button.settings(onClick="window.OneTrust.ToggleInfoDisplay()") cookie settings.
7373
p If you wish to opt out of email-based sharing, provide your email address at
74-
a.settings(href="") this link.
74+
a.settings(href="https://www.okta.com/your-privacy-choices/", target="_blank") this link.
7575

7676
.column.pull-request
7777
span Missing something?

0 commit comments

Comments
 (0)