1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 21:43:06 +05:30

(fixed): search result pages not navigating properly by giving access to basePath

This commit is contained in:
2023-11-19 00:03:25 +05:30
parent 57e54e9ee0
commit fcec83f1e7
2 changed files with 3 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ const windowWrapper = document.getElementById("floatingwindowwrapper");
const searchWin = document.getElementById("searchwindow");
const searchDef = document.getElementById("defresults");
const searchRes = document.getElementById("searchresults");
const basePath = document.getElementById('phpHostBasePath').dataset.basePath;
let lastScrollTop = 0;
window.addEventListener("scroll", function () {
@@ -183,7 +184,7 @@ function inject_search_results (results) {
results.page.forEach(function(result) {
let pageDiv = document.createElement("div");
pageDiv.className = "group resultitem w-full flex justify-between items-center my-1 p-1 cursor-pointer hover:bg-bg_third transition transform duration-200 rounded-lg";
pageDiv.setAttribute("onclick", "location.href='" + result.link + "'");
pageDiv.setAttribute("onclick", "location.href='" + basePath + result.link + "'");
pageDiv.innerHTML = `
<span class="flex items-center">