Merge branch 'dev' into dev

This commit is contained in:
Jonas Winkler 2021-01-01 21:13:49 +01:00 committed by GitHub
commit fb38aacde4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 818 additions and 195 deletions

View file

@ -1,4 +1,5 @@
import { Component } from '@angular/core';
import { AppViewService } from './services/app-view.service';
@Component({
selector: 'app-root',
@ -7,7 +8,8 @@ import { Component } from '@angular/core';
})
export class AppComponent {
constructor () {
constructor (appViewService: AppViewService) {
appViewService.updateDarkModeSettings()
(window as any).pdfWorkerSrc = '/assets/js/pdf.worker.min.js';
}