From c95dad64a44c41da9b29e35bd99785d39a7ed818 Mon Sep 17 00:00:00 2001 From: bruno Date: Mon, 5 Feb 2024 22:10:07 +0100 Subject: [PATCH] Fix navigation --- assets/script.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/script.js b/assets/script.js index 4cf89c6..3a1274e 100644 --- a/assets/script.js +++ b/assets/script.js @@ -28,9 +28,9 @@ function handlePageResponse(data){ } if(data.Page){ document.getElementById("pagearea").innerHTML = data.Page; - if(data.PageLocation){ - history.pushState({}, "", data.PageLocation); - } + // if(data.PageLocation){ + // history.pushState({}, "", data.PageLocation); + // } } }