Skip to content

Commit

Permalink
close #3
Browse files Browse the repository at this point in the history
  • Loading branch information
technbuzz committed Feb 13, 2020
1 parent 0255ac0 commit 3502663
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/app/components/expense-image/expense-image.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<ion-item lines="none">
<input type="file" name="file" accept="image/*" #fileInput (change)="chooseFile($event)">
<small slot="end"><= 1mb</small>
</ion-item>
<p>{{uploadPercent | async }}</p>
<img [src]="imgsrc" height="150" *ngIf="imgsrc" (swipe)="clearSelection($event)">
<ion-list lines="none">
<ion-item>
<input type="file" name="file" accept="image/*" #fileInput (change)="chooseFile($event)">
<small slot="end"><= 1mb</small>
</ion-item>
<ion-item *ngIf="imgsrc" >
<img [src]="imgsrc" height="150" (swipe)="clearSelection($event)">
</ion-item>
</ion-list>


0 comments on commit 3502663

Please sign in to comment.