ng-idle
ng-idle copied to clipboard
Responding to idle users in AngularJS applications.
This is more of a question than a bug. I'm using ngIdle keepalive service to refresh a user token from time to time. But when using multiple tabs, the keepalive...
Title
Could anyone give an example of how to set up a different title?
Hi. I just realized that the $scope.$on('IdleTimeout') event is calling my logout function twice, resulting in error since the second time, obviously, because the user is already logged out. Any...
I defined a module that has code to set the "Idle" configure parameters and start the watch process. I am including this module as a dependency in one of the...
Just a question. I'm using localStorageService to store user credentials so the session persists on multiple tabs in same window and different windows of the same browser, offering persistent session...
Hi. I'm trying to set the timeout with a value that should come from a function in $scope, but in that momento of the app loading, nothing like $scope of...
Hi, How can I automatically Fire Idle event when the user navigates out of app.
Enhancement/feature request: Think it would be pretty cool to have a `getTimUntilIdle()` method that returns how much longer until the user is going to become idle. Currently I can figure...
Is there any workaround to fix the issue #157 . when the tab is inactive, idle warn event is not working properly. Thanks.
I'm trying to disable ng idle doing app.config(['IdleProvider', function(IdleProvider) { IdleProvider.keepalive(false); IdleProvider.timeout(false); }]); // assume myApp was defined according to the "Configure" example above app.run(['Idle', function(Idle) { Idle.unwatch(); }]); But...