update cookie footer while im looking at it
This commit is contained in:
parent
c06303f33d
commit
2b94b9376e
1 changed files with 12 additions and 1 deletions
|
|
@ -35,7 +35,10 @@
|
||||||
</textLink>
|
</textLink>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-menu-item">
|
<div class="footer-menu-item">
|
||||||
Cookie Preferences
|
<a
|
||||||
|
href=""
|
||||||
|
target="_blank"
|
||||||
|
@click="openCookiePreferences">Cookie Preferences</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-menu-item">
|
<div class="footer-menu-item">
|
||||||
<textLink
|
<textLink
|
||||||
|
|
@ -56,6 +59,14 @@ export default {
|
||||||
name: 'footer-menu',
|
name: 'footer-menu',
|
||||||
components: {
|
components: {
|
||||||
textLink
|
textLink
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
openCookiePreferences(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
if (window.OneTrust) {
|
||||||
|
window.OneTrust.ToggleInfoDisplay();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue