From 0c3f058dc7e260f7add2f3f6142aee809644cd13 Mon Sep 17 00:00:00 2001 From: Flavio Copes Date: Wed, 16 Sep 2015 14:41:52 +0200 Subject: [PATCH] Fix erroneous comment --- themes/grav/js/admin-all.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/grav/js/admin-all.js b/themes/grav/js/admin-all.js index d06ce2e3..6fb3985f 100644 --- a/themes/grav/js/admin-all.js +++ b/themes/grav/js/admin-all.js @@ -522,6 +522,6 @@ $(function () { if ($(document).find('[data-grav-keepalive="true"]').length > 0) { setInterval(function() { keepAlive(); - }, (GravAdmin.config.admin_timeout/2)*1000); //Call keepAlive() 60s before the admin session timeouts + }, (GravAdmin.config.admin_timeout/2)*1000); } });