I am utilizing the ng-Idle and Angular Toaster modules in my project. I aim to exhibit a toaster notification during the IdleWarn event of ng-idle, along with the countdown value.
$scope.$on('IdleWarn', function(e, countdown) {
console.log("Timeleft: " + countdown);
toaster.warning('Title', '<section>' + countdown + '</section>', 0, 'trustedHtml', undefined, undefined, true, undefined, undefined);
}
Currently, the toaster only displays a static countdown value. Is there a way I can implement a countdown timer to show the countdown in real time within this toaster notification?