jquery-idletimer
jquery-idletimer copied to clipboard
provides you a way to monitor user activity with a page.
I am wondering how to use it in angular project through npm install & import in component? Npm install jquery-idletimer gives below error 
I've set the timeout value as 1 hour, that would be a parameter of 3600000. Will this be feasible.
Please reveiw the code below: /*! Idle Timer v1.1.0 2016-03-21 | https://github.com/thorst/jquery-idletimer | (c) 2016 Paul Irish | Licensed MIT */ !function(a){a.idleTimer=function(b,c){var d;"object"==typeof b?(d=b,b=null):"number"==typeof b&&(d={timeout:b},b=null),c=c||document,d=a.extend({idle:!1,timeout:3e4,events:"mousemove keydown wheel DOMMouseScroll mousewheel mousedown...
Would be great if there is any way to call a method with a separated time interval to call to an specific service to mantain the backend session alive Like:...
I've been implementing your plugin today and I think I've run across an issue that is either a bug or an inherent browser problem, but I can't figure out which....
This looks like an awesome script. I need something just like this but if the end user is watching a presentation video we don't want it redirecting. How difficult would...
[iframe test](http://jsfiddle.net/2aGL4/187/) Even if i move and click the mouse in the iframe, it still remains idle. Is there a way around this? Iframe does not work with `document` either....
I don't believe your fiddle is working in IE 11 -- http://jsfiddle.net/thorst/2aGL4/ It loads as 'active' and never changes. I'm using IE Browser Version 11.850.15063.0 In my implementation with IE...
When I start the timer and call getLastActiveTime function, getLastActiveTime returns false. $( document ).idleTimer(); var time = $( document ).idleTimer("getLastActiveTime"); Tracing through the code, it looks like firstParam is...
First of all, everything is [my fault](https://github.com/thorst/jquery-idletimer/blob/7b03a23b0c8b1a999038d6d54ac4dd107d41672f/idle-timer/idle-timer.js). Sorry. Second of all, I think we can improve the performance of this script. :) We currently bind to all of these events...