|
Server : Apache System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64 User : p141464 ( 418825) PHP Version : 7.4.33.12 Disable Function : NONE Directory : /html/relaunch-kmu/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()
})