Skip to content
Snippets Groups Projects
Commit 785762e1 authored by Klaus-Dieter Quibeldey-Cirkel's avatar Klaus-Dieter Quibeldey-Cirkel
Browse files

unify width of footer dialogs

parent 2d49e99c
No related merge requests found
......@@ -72,14 +72,14 @@ export class FooterComponent implements OnInit {
showDemo() {
const dialogRef = this.dialog.open(DemoVideoComponent, {
width: '90%'
width: '80%'
});
dialogRef.componentInstance.deviceType = this.deviceType;
}
showCookieModal() {
const dialogRef = this.dialog.open(CookiesComponent, {
width: '90%',
width: '80%',
autoFocus: true
});
......@@ -94,21 +94,21 @@ export class FooterComponent implements OnInit {
showImprint() {
const dialogRef = this.dialog.open(ImprintComponent, {
width: '90%'
width: '80%'
});
dialogRef.componentInstance.deviceType = this.deviceType;
}
showHelp() {
const dialogRef = this.dialog.open(HelpPageComponent, {
width: '90%'
width: '80%'
});
dialogRef.componentInstance.deviceType = this.deviceType;
}
showDataProtection() {
const dialogRef = this.dialog.open(DataProtectionComponent, {
width: '90%'
width: '80%'
});
dialogRef.componentInstance.deviceType = this.deviceType;
}
......
{
"cookies": {
"accept": "Ich akzeptiere",
"accept": "Akzeptiert",
"accept-description": "Bestätigt die Verwendung von Cookies und schaltet die Anwendung frei.",
"cancel": "Nein danke",
"cancel": "Abbrechen",
"cancel-description": "Lehnt die Verwendung von Cookies ab und sperrt die Anwendung.",
"info-label": "Öffnet ein Dialogfenster mit der Datenschutzerklärung zu frag.jetzt.",
"title": "Cookies & Datenschutz"
},
"data-protection": {
"cancel": "Nein danke",
"cancel": "Abbrechen",
"cancel-description": "Lehnt die Datenschutzerklärung ab.",
"consent": "Ich akzeptiere",
"consent": "Akzeptiert",
"consent-description": "Akzeptiert die Datenschutzerklärung der Anwendung.",
"title": "Datenschutz"
},
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment