Page MenuHomec4science

textfield-options-component.component.ts
No OneTemporary

File Metadata

Created
Sun, May 12, 11:56

textfield-options-component.component.ts

import { Component, OnInit } from '@angular/core';
import { OptionService } from '../services/options.service';
@Component({
selector: 'app-textfield-options-component',
templateUrl: './textfield-options-component.component.html',
styleUrls: ['./textfield-options-component.component.scss']
})
export class TextfieldOptionsComponentComponent implements OnInit {
constructor(private optionService: OptionService) {}
fadeout = false;
showMarkup = false; // show/style markup on transcription
ngOnInit() {
}
fadeOutChange() {
this.optionService.change_fadeout_option(this.fadeout);
}
styleMarkup() {
this.optionService.change_markup_all(this.showMarkup);
}
}

Event Timeline