From c4ceb20110f8656a1c4bd38342a23f9799683608 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Thu, 11 Feb 2016 11:26:25 -0500 Subject: [PATCH] reverting changes --- js/app.js | 2 +- js/custom/upcp.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index d5af2d2..215957b 100644 --- a/js/app.js +++ b/js/app.js @@ -30,7 +30,7 @@ $(document).ready(function () { } function createCookieSubcat(name, value) { var date = new Date(); - date.setTime(date.getTime()+(3*1000)); + date.setTime(date.getTime()+(1*1000)); var expires = "; expires="+date.toGMTString(); document.cookie = name+"="+value+expires+"; path=/"; } diff --git a/js/custom/upcp.js b/js/custom/upcp.js index 091a48c..f227ad1 100644 --- a/js/custom/upcp.js +++ b/js/custom/upcp.js @@ -10,7 +10,7 @@ $(document).ready(function () { } function createCookieSubcat(name, value) { var date = new Date(); - date.setTime(date.getTime()+(3*1000)); + date.setTime(date.getTime()+(1*1000)); var expires = "; expires="+date.toGMTString(); document.cookie = name+"="+value+expires+"; path=/"; } -- 2.17.1