Возникает ошибка:
Uncaught TypeError: Cannot read property 'cookieLife' of undefined
Вызов скрипта:
new changer({
// время жизни куки для каждого из переходов (в секундах)
cookieLife: {
utmContext: 30,
socials: 30,
otherSites: 30,
organic: 30,
direct: 30,
}
});
Код скрипта:
function changer(settings){
this.cookieLife = settings.cookieLife;
}
Пробовал так, проблема та же
function changer(settings){
this.cookieLife = this.settings.cookieLife;
this.cookiePriority = this.settings.cookiePriority;
this.changeSerrings = this.settings.changeSerrings;
}