Browse Source

backup of source code before removing vendor directory

tags/2.037
Patrick Sun 4 years ago
parent
commit
6933b0a439
3 changed files with 3 additions and 10 deletions
  1. +1
    -1
      src/app/dashboard/dashboard.component.scss
  2. +1
    -1
      src/app/upload-cards/upload-cards.component.ts
  3. +1
    -8
      src/app/upload-detail/upload-detail.component.ts

+ 1
- 1
src/app/dashboard/dashboard.component.scss View File

.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;

+ 1
- 1
src/app/upload-cards/upload-cards.component.ts View File

}) })
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({});



+ 1
- 8
src/app/upload-detail/upload-detail.component.ts View File

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 {

Loading…
Cancel
Save