jQuery(window).on("load", function() { cookiesAndContentPolicyErrorMessage('https://elegantthemes.com/ https://*.elegantthemes.com/ http://distern.eu/ https://*.paypal.com/ https://*.stripe.com/', 'https://distern.eu'); });
var mutationTimer;
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var observer = new MutationObserver(function(mutations, observer) {
	mutations.forEach(function (mutation) {
        [].filter.call(mutation.addedNodes, function (node) {
            return node.nodeName == "IFRAME";
        }).forEach(function (node) {
			clearTimeout(mutationTimer);
			mutationTimer = setTimeout(function () {
            	cookiesAndContentPolicyErrorMessage('https://elegantthemes.com/ https://*.elegantthemes.com/ http://distern.eu/ https://*.paypal.com/ https://*.stripe.com/', 'https://distern.eu');
			}, 1000);
        });
		[].filter.call(mutation.addedNodes, function (node) {
            return node.nodeName == "OBJECT";
        }).forEach(function (node) {
			clearTimeout(mutationTimer);
			mutationTimer = setTimeout(function () {
            	cookiesAndContentPolicyErrorMessage('https://elegantthemes.com/ https://*.elegantthemes.com/ http://distern.eu/ https://*.paypal.com/ https://*.stripe.com/', 'https://distern.eu');
			}, 1000);
        });
    });
});
observer.observe(document, {
	attributes: true,
	childList: true,
	attributeOldValue: true,
	subtree: true,
});