onInstalled details reason string from object

This commit is contained in:
Kyle Spearrin 2016-09-27 23:38:41 -04:00
parent b1d406a3aa
commit 7ea1ef8b0b
1 changed files with 2 additions and 2 deletions

View File

@ -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
});
});