From adf39bc5c920d00a31b138cd350d293a9c68b67c Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 14 Mar 2016 17:24:33 -0400 Subject: [PATCH] JBAS-1132 Self-register inactivity timeout mods * 5 minute inactivity timeout. * 30 second timeout before redirect after successful registration. Signed-off-by: Bill Erickson --- Open-ILS/web/js/ui/default/opac/register.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/web/js/ui/default/opac/register.js b/Open-ILS/web/js/ui/default/opac/register.js index 6dd4e0f408..0e3c4d8cfe 100644 --- a/Open-ILS/web/js/ui/default/opac/register.js +++ b/Open-ILS/web/js/ui/default/opac/register.js @@ -16,8 +16,8 @@ var required_fields = [ ]; var last_activity = new Date(); -var activity_timeout = 30000; // 30 seconds -var post_success_timeout = 15000; // 15 seconds +var activity_timeout = 300000; // 300 seconds +var post_success_timeout = 30000; // 15 seconds var timeout_redirect = 'https://www.kcls.org'; /* show/hide card options depending on the selected type. */ -- 2.11.0