unnecessary variables removed
This commit is contained in:
parent
f6981cd041
commit
1db6011a8a
@ -6,23 +6,14 @@ import { AppMainComponent } from './app.main.component';
|
|||||||
selector: 'app-config',
|
selector: 'app-config',
|
||||||
templateUrl:'./app.config.component.html'
|
templateUrl:'./app.config.component.html'
|
||||||
})
|
})
|
||||||
export class AppConfigComponent implements OnInit{
|
export class AppConfigComponent {
|
||||||
|
|
||||||
topbarThemes: any[];
|
scale: number = 14;
|
||||||
|
|
||||||
componentThemes: any[];
|
|
||||||
|
|
||||||
topbarColor = 'light';
|
|
||||||
|
|
||||||
componentColor = 'blue';
|
|
||||||
|
|
||||||
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) {
|
replaceLink(linkElement, href) {
|
||||||
if (this.isIE()) {
|
if (this.isIE()) {
|
||||||
linkElement.setAttribute('href', href);
|
linkElement.setAttribute('href', href);
|
||||||
|
@ -15,6 +15,6 @@ export class MenuService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
reset() {
|
reset() {
|
||||||
// this.resetSource.next(true);
|
this.resetSource.next(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user