1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-07-08 12:34:53 +02: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
});
});