class AFormPopup {
constructor(options) {
var _this = this;
_this.id = '_' + Math.random().toString(36).substr(2, 9);
_this.options = options;
}
setCookie(cname, cvalue, exdays) {
const d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
let expires = "expires="+ d.toUTCString();
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
getCookie(cname) {
let name = cname + "=";
let decodedCookie = decodeURIComponent(document.cookie);
let ca = decodedCookie.split(';');
for(let i = 0; i < ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
init() {
var _this = this;
_this.remove();
var div = document.createElement("div");
div.innerHTML = `
`;
div.classList.add("acelle-popup");
div.id = 'Popup_' + _this.id;
document.body.appendChild(div);
this.node = div;
this.iframe = document.getElementById('Popup'+_this.id+'Frame');
this.loadCss('