
angular.module('bcgtag', []).run(function($rootScope, $window, $location) {
    $rootScope.$on('$locationChangeSuccess', function(event, toState, toParams) {
        $window.dataLayer = $window.dataLayer || [];

        function gtag() {
            dataLayer.push(arguments);
        }
		
        if (this.document.location.hostname == "cbpbusinessconnection.cbp.dhs.gov") {
          
            gtag('js', new Date());
            gtag('config', 'G-Y97W8K9GTB');
        } //else alert("Karina T: " + this.document.location.hostname);
    });

});