funky-framadate-front/src/app/poll-graphic/poll-graphic.component.ts

24 lines
429 B
TypeScript
Raw Normal View History

2019-10-23 10:45:30 +02:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'framadate-poll-graphic',
templateUrl: './poll-graphic.component.html',
styleUrls: ['./poll-graphic.component.scss']
})
export class PollGraphicComponent implements OnInit {
2019-10-23 15:39:16 +02:00
isColorblind:boolean;
constructor() {
this.isColorblind = false;
}
setColorblind(){
this.isColorblind = !this.isColorblind;
}
2019-10-23 10:45:30 +02:00
ngOnInit() {
}
}