blob: f8ea8bb48ce415695712d9f889636d8516bd1965 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import { Component, OnInit } from '@angular/core';
import { CookieService } from 'ngx-cookie-service';
@Component({
selector: 'app-playground',
templateUrl: './playground.component.html',
styleUrls: ['./playground.component.css']
})
export class PlaygroundComponent implements OnInit {
animateBackground = true;
backgroundFill = 1.0;
constructor(private cookie: CookieService) { }
updateBGPrefs() {
this.cookie.set('animateBackground', "" + this.animateBackground);
this.cookie.set('backgroundFill', "" + this.backgroundFill);
console.log(this.animateBackground, this.backgroundFill);
}
ngOnInit(): void {
if (this.cookie.check('animateBackground')) {
this.animateBackground = this.cookie.get('animateBackground') == 'true';
}
if (this.cookie.check('backgroundFill')) {
this.backgroundFill = parseFloat(this.cookie.get('backgroundFill'));
}
}
}
|