removed logs

This commit is contained in:
Timo Bejan 2020-10-20 11:23:49 +03:00
parent f39b2cb038
commit 2b36e871d2
3 changed files with 0 additions and 3 deletions

View File

@ -25,7 +25,6 @@ export class AuthGuard extends KeycloakAuthGuard {
}
await this._userService.loadCurrentUser();
console.log(this._userService.user);
return true;
}
}

View File

@ -140,7 +140,6 @@ export class PdfViewerComponent implements OnInit, AfterViewInit, OnDestroy {
}
private toPosition(page: number, selectedQuad: any): Rectangle {
console.log(selectedQuad);
const pageHeight = this.wvInstance.docViewer.getPageHeight(page);
const height = selectedQuad.y2 - selectedQuad.y4;

View File

@ -16,7 +16,6 @@ export class ViewerSyncService {
get activeViewerObject(): WebViewerInstance{
if (this._activeViewer) {
const activeViewer = this._viewers[this._activeViewer];
console.log(activeViewer,this._activeViewer);
return activeViewer;
}
return undefined;