| @@ -1,7 +1,7 @@ | |||
| .container.outer{ | |||
| width:100%; | |||
| max-width:100vw; | |||
| background: url('./assets/img/body_bg.jpg') no-repeat center center fixed; | |||
| background: url('../../assets/img/body_bg.jpg') no-repeat center center fixed; | |||
| -webkit-background-size: cover; | |||
| -moz-background-size: cover; | |||
| -o-background-size: cover; | |||
| @@ -14,7 +14,7 @@ import {UploadAttachService} from '../service/upload.attach.service'; | |||
| }) | |||
| export class UploadCardsComponent implements OnInit { | |||
| @Input() uploadId: number; | |||
| @Input() icon = '../../assets/img/pdf.jpg'; | |||
| @Input() icon = ''; | |||
| @ViewChild('imgBox', {static: true}) imgBox: ImagePopupDialogComponent; | |||
| public uploadMeta: UploadMetaModel = new UploadMetaModel({}); | |||
| @@ -36,7 +36,7 @@ export class UploadDetailComponent implements OnInit, AfterViewInit { | |||
| public PayInSize = '300px'; | |||
| public fabOffset = { x: '10px', y: this.PayInSize }; | |||
| @Input() public currentTab = 0; | |||
| public currentTab = 0; | |||
| public tabText: string[] = ['Preview', 'Content', 'Analysis']; | |||
| public tabTitle: string[] = this.tabText; | |||
| @@ -58,13 +58,6 @@ export class UploadDetailComponent implements OnInit, AfterViewInit { | |||
| this.loadUploadMeta(); | |||
| this.fabSlideIn(); | |||
| // this.changeTabTitle(); | |||
| // this.currentTab=2; | |||
| setTimeout(() => { | |||
| this.resizeSplitter = true; | |||
| }, 2000); | |||
| } | |||
| ngAfterViewInit(): void { | |||