From 57406747e59956a52cbfcc98f303a732f6a4bd4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ba=CC=81lint=20Szekeres?= Date: Mon, 20 May 2019 10:42:05 +0200 Subject: [PATCH] ignore base64-zip-line clipboard event --- public/assets/js/app.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/public/assets/js/app.js b/public/assets/js/app.js index c4341b6..2d45849 100644 --- a/public/assets/js/app.js +++ b/public/assets/js/app.js @@ -601,9 +601,11 @@ position: 'bottom', }); - gtag('event', key, { - event_category: 'clipboard', - }); + if (key !== 'base64-zip-line') { + gtag('event', key, { + event_category: 'clipboard', + }); + } }; $scope.refreshHighlighting = function() {