1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

convert copying to platform utils service

This commit is contained in:
Kyle Spearrin
2018-02-16 14:15:35 -05:00
parent 34b3890647
commit 1eaa104182
2 changed files with 6 additions and 8 deletions

View File

@@ -21,7 +21,6 @@ import { I18nService } from 'jslib/abstractions/i18n.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { TokenService } from 'jslib/abstractions/token.service';
import { TotpService } from 'jslib/abstractions/totp.service';
import { UtilsService } from 'jslib/abstractions/utils.service';
import { AttachmentView } from 'jslib/models/view/attachmentView';
import { CipherView } from 'jslib/models/view/cipherView';
@@ -47,10 +46,9 @@ export class ViewComponent implements OnChanges, OnDestroy {
private totpInterval: any;
constructor(private cipherService: CipherService, private totpService: TotpService,
private tokenService: TokenService, private utilsService: UtilsService,
private tokenService: TokenService, private toasterService: ToasterService,
private cryptoService: CryptoService, private platformUtilsService: PlatformUtilsService,
private i18nService: I18nService, private analytics: Angulartics2, private toasterService: ToasterService) {
}
private i18nService: I18nService, private analytics: Angulartics2) { }
async ngOnChanges() {
this.cleanUp();
@@ -104,7 +102,7 @@ export class ViewComponent implements OnChanges, OnDestroy {
}
this.analytics.eventTrack.next({ action: 'Copied ' + aType });
this.utilsService.copyToClipboard(value, window.document);
this.platformUtilsService.copyToClipboard(value);
}
async downloadAttachment(attachment: AttachmentView) {