| Server IP : 89.248.107.232 / Your IP : 216.73.217.70 Web Server : Apache System : Linux host2.kasilh.com 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64 User : seg ( 10005) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/seg-sa.es/iticsl.com/wp-content/plugins/wp-gdpr-compliance/Resources/js/ |
Upload File : |
import 'regenerator-runtime/runtime.js'
import init from './utils/init'
import animations from './components/animations'
import ConsentBar from './components/consent-bar'
import ConsentModal from './components/consent-modal'
import LoadConsents from './components/load-consents'
import FormAccessRequest from './components/form-access-request'
import FormDeleteRequest from './components/form-delete-request'
/**
* When using FontAwesome via Javascript
* import fontAwesome from './components/fontAwesome';
*/
// On Document ready
init(() => {
const consents = typeof wpgdprcFront.consents !== 'undefined' ? wpgdprcFront.consents : []
animations()
/**
* When using FontAwesome via Javascript
* fontAwesome();
*/
// Add other components here...
if (Array.isArray(consents) && consents.length > 0) {
new ConsentBar()
new ConsentModal()
new LoadConsents()
}
new FormAccessRequest()
new FormDeleteRequest()
})