Skip to content
This repository has been archived by the owner on Feb 7, 2025. It is now read-only.

Commit

Permalink
Corrección de rutas de página
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisangelParra committed Apr 16, 2024
1 parent 84b0c65 commit 9408698
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}

0 comments on commit 9408698

Please sign in to comment.