From 7ea1ef8b0bb8ad06d0b6d0b3f5798ecb7b428491 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 27 Sep 2016 23:38:41 -0400 Subject: [PATCH] onInstalled details reason string from object --- src/background.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/background.js b/src/background.js index fae802ba6f..e3eca53e87 100644 --- a/src/background.js +++ b/src/background.js @@ -11,10 +11,10 @@ var autofillService = new AutofillService(); var passwordGenerationService = new PasswordGenerationService(); var appIdService = new AppIdService(); -chrome.runtime.onInstalled.addListener(function (reason) { +chrome.runtime.onInstalled.addListener(function (details) { ga('send', { hitType: 'event', - eventAction: 'onInstalled ' + reason + eventAction: 'onInstalled ' + details.reason }); });