diff --git a/lib/browser/app.js b/lib/browser/app.js index f06f6841..4c3d5c9a 100644 --- a/lib/browser/app.js +++ b/lib/browser/app.js @@ -74,6 +74,10 @@ const app = angular.module('Etcher', [ 'Etcher.Utils.Dropzone' ]); +app.run(function(AnalyticsService) { + AnalyticsService.logEvent('Application start'); +}); + app.config(function($stateProvider, $urlRouterProvider) { $urlRouterProvider.otherwise('/main');