update cookie footer while im looking at it

This commit is contained in:
Bill Richardson 2025-12-17 14:10:47 -05:00
parent c06303f33d
commit 2b94b9376e

View file

@ -35,7 +35,10 @@
</textLink>
</div>
<div class="footer-menu-item">
Cookie Preferences
<a
href=""
target="_blank"
@click="openCookiePreferences">Cookie Preferences</a>
</div>
<div class="footer-menu-item">
<textLink
@ -56,6 +59,14 @@ export default {
name: 'footer-menu',
components: {
textLink
},
methods: {
openCookiePreferences(event) {
event.preventDefault();
if (window.OneTrust) {
window.OneTrust.ToggleInfoDisplay();
}
}
}
};
</script>