diff --git a/src/app/app.config.component.ts b/src/app/app.config.component.ts index 726941f..7bbeada 100644 --- a/src/app/app.config.component.ts +++ b/src/app/app.config.component.ts @@ -6,23 +6,14 @@ import { AppMainComponent } from './app.main.component'; selector: 'app-config', templateUrl:'./app.config.component.html' }) -export class AppConfigComponent implements OnInit{ +export class AppConfigComponent { - topbarThemes: any[]; - - componentThemes: any[]; - - topbarColor = 'light'; - - componentColor = 'blue'; - - scale:number = 14; + scale: number = 14; - scales:any[] = [12,13,14,15,16]; + scales: any[] = [12,13,14,15,16]; - constructor(public app: AppComponent, public appMain: AppMainComponent) {} + constructor(public app: AppComponent, public appMain: AppMainComponent) { } - ngOnInit() { } replaceLink(linkElement, href) { if (this.isIE()) { linkElement.setAttribute('href', href); diff --git a/src/app/service/app.menu.service.ts b/src/app/service/app.menu.service.ts index 0163ecf..ba552db 100644 --- a/src/app/service/app.menu.service.ts +++ b/src/app/service/app.menu.service.ts @@ -15,6 +15,6 @@ export class MenuService { } reset() { - // this.resetSource.next(true); + this.resetSource.next(true); } }