ng-idle icon indicating copy to clipboard operation
ng-idle copied to clipboard

Responding to idle users in AngularJS applications.

Results 49 ng-idle issues
Sort by recently updated
recently updated
newest added

Hello folks, When I use ngIdle along with svgs that contain the tag, angular ends up compiling the title tag as a directive, which is causing a (minor) perf overhead,...

enhancement

It seems that for some reason ng-idle is triggering too many AngularJS `digest` cycles. This cause performance issues on big applications, especially when a lot of non trivial AngularJS filters...

i have written like: `app.controller('EventsCtrl', function ($scope, Idle) { $scope.events = []; Idle.setTimeout(5); Idle.setIdle(5); $scope.$on('IdleStart', function () { addEvent({ event: 'IdleStart', date: new Date() }); }); $scope.$on('IdleEnd', function () {...

First of all, recently, I was quite happy when I found this library. It provided exactly what I was searching for, and more. Now, having integrated it into our application,...

ng-idle triggers digest loop in high frequency, that is impacting performance of application. I guess, below code causing for the digest loop line 67: state.ping = $interval(ping, options.interval * 1000);...

The problem is you store the date as text objects instead of simply storing the getTime() values in the local storage, so if something overloads the toJson to format the...

I opened few browser tabs (in the same window) each from two different modules but I observe the tabs that belong to the same module show the idle warning and...

I am trying to do some customizations while using the ng-idle component. for example, I want my users decide if they want to extend the session by letting them click...

I'm using the demo code you have and seem to have run into an issue with the ability to close to the modal. I have to requirements for the modals...

We have a requirement, to not to timeout or watch the user idleness for the first page and final page of our application. Is there a way the watch/timeout can...