unnecessary variables removed

This commit is contained in:
Yiğit FINDIKLI 2022-01-07 12:28:15 +03:00
parent f6981cd041
commit 1db6011a8a
2 changed files with 5 additions and 14 deletions

View File

@ -6,15 +6,7 @@ import { AppMainComponent } from './app.main.component';
selector: 'app-config',
templateUrl:'./app.config.component.html'
})
export class AppConfigComponent implements OnInit{
topbarThemes: any[];
componentThemes: any[];
topbarColor = 'light';
componentColor = 'blue';
export class AppConfigComponent {
scale: number = 14;
@ -22,7 +14,6 @@ export class AppConfigComponent implements OnInit{
constructor(public app: AppComponent, public appMain: AppMainComponent) { }
ngOnInit() { }
replaceLink(linkElement, href) {
if (this.isIE()) {
linkElement.setAttribute('href', href);

View File

@ -15,6 +15,6 @@ export class MenuService {
}
reset() {
// this.resetSource.next(true);
this.resetSource.next(true);
}
}