1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-24 12:06:15 +01:00

bg_isBackground

This commit is contained in:
Kyle Spearrin 2017-09-09 11:55:30 -04:00
parent ff50d935b2
commit ac00d1f106
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
var isBackground = true, var bg_isBackground = true,
bg_utilsService, bg_utilsService,
bg_i18nService, bg_i18nService,
bg_constantsService, bg_constantsService,

View File

@ -54,7 +54,7 @@ chrome.extension.getBackgroundPage().bg_appIdService.getAnonymousAppId(function
request.send(message); request.send(message);
}; };
if (typeof isBackground !== 'undefined') { if (typeof bg_isBackground !== 'undefined') {
ga('send', 'pageview', '/background.html'); ga('send', 'pageview', '/background.html');
} }
}); });