1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

remove analytics in favor of platform utils

This commit is contained in:
Kyle Spearrin
2018-10-03 00:21:22 -04:00
parent 89a448b12f
commit adb3dc78ee
19 changed files with 50 additions and 86 deletions

View File

@@ -1,5 +1,3 @@
import { Angulartics2 } from 'angulartics2';
import { Component } from '@angular/core';
import { Router } from '@angular/router';
@@ -15,11 +13,10 @@ import { ExportComponent as BaseExportComponent } from 'jslib/angular/components
templateUrl: 'export.component.html',
})
export class ExportComponent extends BaseExportComponent {
constructor(analytics: Angulartics2,
cryptoService: CryptoService, i18nService: I18nService,
constructor(cryptoService: CryptoService, i18nService: I18nService,
platformUtilsService: PlatformUtilsService, exportService: ExportService,
private router: Router) {
super(analytics, cryptoService, i18nService, platformUtilsService, exportService, window);
super(cryptoService, i18nService, platformUtilsService, exportService, window);
}
protected saved() {