I'm using angular-timer and I'm just a little confused how to track its events. For example, I want to do something after time is up, but I can't see any events on console log.
vm.add20Seconds = function() {
$scope.$broadcast('timer-add-cd-seconds', 20);
}
$scope.$on('timer-add-cd-seconds', function (event, data) {
console.log(data); // 'Some data'
});
The console is empty.
https://github.com/siddii/angular-timer/blob/master/examples/angularjs-add-countdown-seconds.html
As the code given in link is not seems to be updated, I think you changed it to use
controllerAs
syntax. So yourbutton
html will usevm
alias while calling controller method. Assuming you usedng-controller="MyAppController as vm"
Markup
Else wanted to use
$scope
in your controller then simply change method to$scope.add20Seconds
instead ofvm.add20Seconds
Update
To get call a function after
20
seconds over, you could use$timeout
service here, that will call and specified callback when mentioned$timeout
completed.Code