Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CoreHome/vue/src/Matomo/Matomo.adapter.ts')
-rw-r--r--plugins/CoreHome/vue/src/Matomo/Matomo.adapter.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/CoreHome/vue/src/Matomo/Matomo.adapter.ts b/plugins/CoreHome/vue/src/Matomo/Matomo.adapter.ts
index eb52affa09..9a6da109da 100644
--- a/plugins/CoreHome/vue/src/Matomo/Matomo.adapter.ts
+++ b/plugins/CoreHome/vue/src/Matomo/Matomo.adapter.ts
@@ -19,7 +19,6 @@ function initPiwikService(piwik: PiwikGlobal, $rootScope: IRootScopeService) {
($rootScope as any).$oldEmit = $rootScope.$emit; // eslint-disable-line
$rootScope.$emit = function emitWrapper(name: string, ...args: any[]): IAngularEvent { // eslint-disable-line
Matomo.postEventNoEmit(name, ...args);
-
return (this as any).$oldEmit(name, ...args); // eslint-disable-line
};