Added about page

This commit is contained in:
Isaac Grynsztein
2020-03-15 22:05:00 -04:00
parent da399601e1
commit 2cd35cccd1
8 changed files with 86 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ import { Router, NavigationStart, NavigationEnd } from '@angular/router';
import { OverlayContainer } from '@angular/cdk/overlay';
import { THEMES_CONFIG } from '../themes';
import { SettingsComponent } from './settings/settings.component';
import { AboutDialogComponent } from './dialogs/about-dialog/about-dialog.component';
@Component({
selector: 'app-root',
@@ -165,5 +166,11 @@ onSetTheme(theme, old_theme) {
});
}
openAboutDialog() {
const dialogRef = this.dialog.open(AboutDialogComponent, {
width: '80vw'
});
}
}