| .container.outer{ | .container.outer{ | ||||
| width:100%; | width:100%; | ||||
| max-width:100vw; | 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; | -webkit-background-size: cover; | ||||
| -moz-background-size: cover; | -moz-background-size: cover; | ||||
| -o-background-size: cover; | -o-background-size: cover; |
| }) | }) | ||||
| export class UploadCardsComponent implements OnInit { | export class UploadCardsComponent implements OnInit { | ||||
| @Input() uploadId: number; | @Input() uploadId: number; | ||||
| @Input() icon = '../../assets/img/pdf.jpg'; | |||||
| @Input() icon = ''; | |||||
| @ViewChild('imgBox', {static: true}) imgBox: ImagePopupDialogComponent; | @ViewChild('imgBox', {static: true}) imgBox: ImagePopupDialogComponent; | ||||
| public uploadMeta: UploadMetaModel = new UploadMetaModel({}); | public uploadMeta: UploadMetaModel = new UploadMetaModel({}); | ||||
| public PayInSize = '300px'; | public PayInSize = '300px'; | ||||
| public fabOffset = { x: '10px', y: this.PayInSize }; | public fabOffset = { x: '10px', y: this.PayInSize }; | ||||
| @Input() public currentTab = 0; | |||||
| public currentTab = 0; | |||||
| public tabText: string[] = ['Preview', 'Content', 'Analysis']; | public tabText: string[] = ['Preview', 'Content', 'Analysis']; | ||||
| public tabTitle: string[] = this.tabText; | public tabTitle: string[] = this.tabText; | ||||
| this.loadUploadMeta(); | this.loadUploadMeta(); | ||||
| this.fabSlideIn(); | this.fabSlideIn(); | ||||
| // this.changeTabTitle(); | |||||
| // this.currentTab=2; | |||||
| setTimeout(() => { | |||||
| this.resizeSplitter = true; | |||||
| }, 2000); | |||||
| } | } | ||||
| ngAfterViewInit(): void { | ngAfterViewInit(): void { |