From 94086988edf175b32d8cf248e18ebf4785665641 Mon Sep 17 00:00:00 2001 From: Luisangel Parra Date: Tue, 16 Apr 2024 14:36:56 -0500 Subject: [PATCH] =?UTF-8?q?Correcci=C3=B3n=20de=20rutas=20de=20p=C3=A1gina?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/script.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/script.js b/src/script.js index 22d12c6..0a795cd 100644 --- a/src/script.js +++ b/src/script.js @@ -61,13 +61,13 @@ menuLinks.addEventListener('click', hideMobileMenu); navLogo.addEventListener('click', hideMobileMenu); function goToBubbleSortPage() { - window.location.href = "bubbleSort.html"; + window.location.href = "./bubbleSort.html"; } function goToQuickSortPage() { - window.location.href = "quickSort.html"; + window.location.href = "./quickSort.html"; } function goToInsertionSortPage() { - window.location.href = "insertionSort.html"; + window.location.href = "./insertionSort.html"; } \ No newline at end of file