examples.lockscreen.js 314 B

123456789101112131415161718192021
  1. (function($) {
  2. 'use strict';
  3. var $document,
  4. idleTime;
  5. $document = $(document);
  6. $(function() {
  7. $.idleTimer( 10000 ); // ms
  8. $document.on( 'idle.idleTimer', function() {
  9. // if you don't want the modal
  10. // you can make a redirect here
  11. LockScreen.show();
  12. });
  13. });
  14. }).apply( this, [ jQuery ]);