Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

session-idle-Timeout-custom.js 431B

12345678910111213141516
  1. 'use strict';
  2. $(document).ready(function() {
  3. // Idle timeout
  4. $.sessionTimeout({
  5. heading: 'h5',
  6. title: 'Idle Timeout',
  7. message: 'Your session is about to expire. Do you want to stay connected?',
  8. warnAfter: 5000,
  9. redirAfter: 15000,
  10. keepAliveUrl: '/',
  11. redirUrl: 'session-idle-timeout.html',
  12. logoutUrl: 'session-idle-timeout.html'
  13. });
  14. });