File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change 88 } )
99
1010 // If the user is in the US-CA region, change the text of the preference center link
11- window . ketch ( 'on' , 'regionInfo' , ( regionInfo ) => {
12- const customTextRegions = [ 'US-CA' ]
13- if ( customTextRegions . includes ( regionInfo ) ) {
14- const preferenceCenterLinkElement = document . getElementById ( 'preferenceCenterLink' )
15- if ( preferenceCenterLinkElement ) {
16- preferenceCenterLinkElement . textContent = 'Do Not Sell My Personal Information'
17- }
18- }
19- } )
11+ // 3/19/25: Disabled this feature due to shifting CA legal requirements. Will re-enable with new textContent if needed.
12+ // window.ketch('on', 'regionInfo', (regionInfo) => {
13+ // const customTextRegions = ['US-CA']
14+ // if (customTextRegions.includes(regionInfo)) {
15+ // const preferenceCenterLinkElement = document.getElementById('preferenceCenterLink')
16+ // if (preferenceCenterLinkElement) {
17+ // preferenceCenterLinkElement.textContent = 'Do Not Sell My Personal Information'
18+ // }
19+ // }
20+ // })
2021
2122 // If the user is in the default jurisdiction, remove the preference center link
2223 window . ketch ( 'on' , 'jurisdiction' , ( jurisdiction ) => {
You can’t perform that action at this time.
0 commit comments