1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-21 16:18:28 +01:00

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

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