You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
I think I'm missing some piece of information. config and run are only executed once, when your application starts. So here you've effectively told it to turn off keepalive and timeout, and when it runs, you tell it to stop watching even though you never told it to start watching. Ng-Idle does not automatically start by default, so I'm not sure what the problem you're experiencing is.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm trying to disable ng idle doing
app.config(['IdleProvider', function(IdleProvider) {
IdleProvider.keepalive(false);
IdleProvider.timeout(false);
But this isnt wprking.. Is there a way to do this?
The text was updated successfully, but these errors were encountered: