26 lines
609 B
TypeScript
26 lines
609 B
TypeScript
import {Component} from '@angular/core';
|
|
import {HeaderComponent} from "../header/header.component";
|
|
import {NgClass, NgOptimizedImage} from '@angular/common';
|
|
import {ScrollService} from '../scroll/scroll.service';
|
|
|
|
@Component({
|
|
selector: 'app-lag',
|
|
imports: [
|
|
HeaderComponent,
|
|
NgOptimizedImage,
|
|
NgClass
|
|
],
|
|
templateUrl: './lag.component.html',
|
|
styleUrl: './lag.component.scss'
|
|
})
|
|
export class LagComponent {
|
|
showExceptions: boolean = false;
|
|
|
|
constructor(public scrollService: ScrollService) {
|
|
}
|
|
|
|
public toggleExceptions() {
|
|
this.showExceptions = !this.showExceptions;
|
|
}
|
|
}
|