summaryrefslogtreecommitdiffstats
path: root/templates/html/resize.js
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/resize.js')
-rw-r--r--templates/html/resize.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/html/resize.js b/templates/html/resize.js
index 699d15c..315b2ff 100644
--- a/templates/html/resize.js
+++ b/templates/html/resize.js
@@ -53,7 +53,7 @@ function initResizable()
date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
expiration = date.toGMTString();
}
- document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/";
+ document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; SameSite=Lax; expires=" + expiration+"; path=/";
}
function resizeWidth()
@@ -77,7 +77,7 @@ function initResizable()
var footerHeight = footer.outerHeight();
var windowHeight = $(window).height();
var contentHeight,navtreeHeight,sideNavHeight;
- if (page_layout==0) { /* DISABLE_INDEX=NO */
+ if (typeof page_output==='undefined' || page_layout==0) { /* DISABLE_INDEX=NO */
contentHeight = windowHeight - headerHeight - footerHeight;
navtreeHeight = contentHeight;
sideNavHeight = contentHeight;