[angular-16-irish-monitor | DONE | FIXED] cookie: set properly cookie when cookie name is not default

angular-16-irish-monitor
argirok 4 months ago
parent 5060151e09
commit c977bb0898

@ -109,10 +109,11 @@ export class CookieLawComponent implements OnInit {
this.isSeenEvt = new EventEmitter<boolean>();
this.animation = 'topIn';
this._position = 'bottom';
this.cookieLawSeen = this._service.seen(this.cookieName);
}
ngOnInit(): void {
this.cookieLawSeen = this._service.seen(this.cookieName);
if (typeof document !== 'undefined') {
this.animation = this.position === 'bottom' ? 'bottomIn' : 'topIn';

@ -17,7 +17,7 @@ export class CookieLawService {
}
storeCookie(cookieName): void {
return this.setCookie('cookieName');
return this.setCookie(cookieName);
}
/**

Loading…
Cancel
Save