2025-04-05 19:22:59 +00:00
|
|
|
import {Component} from '@angular/core';
|
2025-04-06 15:27:22 +00:00
|
|
|
import {ScrollService} from '../scroll/scroll.service';
|
2025-04-05 19:22:59 +00:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
standalone: false,
|
|
|
|
|
selector: 'app-rules',
|
|
|
|
|
templateUrl: './rules.component.html',
|
|
|
|
|
styleUrl: './rules.component.scss'
|
|
|
|
|
})
|
|
|
|
|
export class RulesComponent {
|
2025-04-06 15:29:52 +00:00
|
|
|
showExceptions: boolean = false;
|
|
|
|
|
|
2025-04-06 15:27:22 +00:00
|
|
|
constructor(public scrollService: ScrollService) {
|
|
|
|
|
}
|
2025-04-06 15:29:52 +00:00
|
|
|
|
|
|
|
|
public toggleExceptions() {
|
|
|
|
|
this.showExceptions = !this.showExceptions;
|
|
|
|
|
}
|
2025-04-05 19:22:59 +00:00
|
|
|
}
|