From 3de3c7a1891db44891d3621ac3d3217708e0990e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 8 Jun 2018 12:16:47 -0400 Subject: [PATCH] add download file function for attachments --- jslib | 2 +- src/app/vault/attachments.component.html | 3 ++- src/app/vault/attachments.component.ts | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/jslib b/jslib index 8a1bc30fc9..4c083eeb92 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 8a1bc30fc996fa787c981abdc6fc78e961ced4b5 +Subproject commit 4c083eeb92d599bd8b85fb88ec5d435079b79395 diff --git a/src/app/vault/attachments.component.html b/src/app/vault/attachments.component.html index cb4f000862..5e1b7ad74f 100644 --- a/src/app/vault/attachments.component.html +++ b/src/app/vault/attachments.component.html @@ -15,7 +15,8 @@ - {{a.fileName}} + {{a.fileName}} +
{{a.sizeName}} diff --git a/src/app/vault/attachments.component.ts b/src/app/vault/attachments.component.ts index 279b162326..1b086de522 100644 --- a/src/app/vault/attachments.component.ts +++ b/src/app/vault/attachments.component.ts @@ -21,6 +21,6 @@ export class AttachmentsComponent extends BaseAttachmentsComponent { cryptoService: CryptoService, tokenService: TokenService, platformUtilsService: PlatformUtilsService) { super(cipherService, analytics, toasterService, i18nService, cryptoService, tokenService, - platformUtilsService); + platformUtilsService, window); } }