After extensively searching this site and using Google, I have been unable to find a solution. I have one module dedicated to services and another for the app itself. In the services module, I have the following code snippet:
$interval(function(){
$rootScope.$broadcast('tick');
},1000);
In the app section, I have:
$scope.$on('tick'), function(event){
alert('tick');
}
I came across this model on a jsfiddle. Although 'tick' appears to be triggered without any errors in the console, the app code fails to execute...