I have an angularJS application, and I need (for a service provider) to include this piece of code in one of my template:
<script type="text/javascript">
window.ptag_params = {
zone: "listing",
customerId: {{user.uuid}},
siteType: "d",
};
</script>
I need to pass the user.uuid dynamically to that variable, what is the best/cleanest way to do this ?
thanks