Privacy and Cookie Policy

Enterprise-Grade Data Protection

As a legal entity registered in the UK we're compliant to the Information Commissioner's Office Organization (ICO) legislations around data and regarding data protection we have strict rules in terms of how we deal with your data. Just to clarify, we're not able to access your data without your consent and most information is encrypted in our database. We have hosted Delenta's servers and data in the UK (Ireland). We have taken all important measures like data encryption transit and at rest, granular roles and permissions & hosting the platform on an ISO 27001 , PCI-DSS, HIPAA/HITECH, FedRAMP, & GDPR compliant infrastructure.
For more details: www.delenta.com/privacy-policy
//GA Event Tracker Script. Licensed under MIT. Free for any use by all. Written by Paul Seal from codeshare.co.uk // Get the category, action and label from the element and send it to GA. The action is optional, because mostly it will be a click event. var trackClickEvent = function () { var eventCategory = this.getAttribute("data-event-category"); var eventAction = this.getAttribute("data-event-action"); var eventLabel = this.getAttribute("data-event-label"); var eventValue = this.getAttribute("data-event-value"); ga('send', 'event', eventCategory, (eventAction != undefined && eventAction != '' ? eventAction : 'click'), eventLabel, eventValue); }; // Find all of the elements on the page which have the class 'ga-event' var elementsToTrack = document.getElementsByClassName("ga-event"); // Add an event listener to each of the elements you found var elementsToTrackLength = elementsToTrack.length; for (var i = 0; i < elementsToTrackLength; i++) { elementsToTrack[i].addEventListener('click', trackClickEvent, false); }