Fix nav resizing.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Captain ALM 2022-08-17 21:55:09 +01:00
parent efda456bcc
commit 5f4fe169c8
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1

View File

@ -302,13 +302,19 @@ function SetupJSRSN() {
PerformNavResize()
}
function PerformNavResize() {
var ht = document.getElementsByTagName("html")
if (ht && ht.length > 0) {
var maxbarsz = ht[0].clientWidth - 324;
var ww = 0
if (window.innerWidth && window.innerWidth !== 10) {
ww = window.innerWidth
} else {
var ht = document.getElementsByTagName("html")
if (ht && ht.length > 0) {ww = ht[0].clientWidth;}
}
if (ww > 0) {
var maxbarsz = ww - 324;
var men = document.getElementById("menu")
var vmen = document.getElementById("vmenu")
if (men && vmen) {
if (ht[0].clientWidth > 679) {
if (ww > 679) {
while (vmen.childNodes.length > 0) {InsertBefore(men, vmen.removeChild(vmen.childNodes[vmen.childNodes.length - 1]));}
} else {
var vmeni