grbsk / ng-idle

Responding to idle users in AngularJS applications.
http://hackedbychinese.github.io/ng-idle
MIT License
564 stars 195 forks source link

Title #193

Open GlauberF opened 7 years ago

GlauberF commented 7 years ago

Could anyone give an example of how to set up a different title?

BLouzada commented 6 years ago

I would like an example too

tugbadm commented 6 years ago

You can change it in this part. Example is from readme

$scope.$on('IdleWarn', function(e, countdown) {
document.title = "Hello world: " + countdown; });