Skip to content

Commit

Permalink
small error in path
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsTact committed Jan 22, 2024
1 parent e202913 commit 2f4b154
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/footer3.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fetch('../../ui/footer3.html')
fetch('../ui/footer3.html')
.then(res => res.text())
.then(text => {
let oldelem = document.querySelector("script#replace_with_footer");
Expand Down
2 changes: 1 addition & 1 deletion js/header3.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fetch('../../ui/header3.html')
fetch('../ui/header3.html')
.then(res => res.text())
.then(text => {
let oldelem = document.querySelector("script#replace_with_header");
Expand Down
2 changes: 1 addition & 1 deletion js/nav3.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fetch('../../ui/nav3.html')
fetch('../ui/nav3.html')
.then(res => res.text())
.then(text => {
let oldelem = document.querySelector("script#replace_with_navbar");
Expand Down

0 comments on commit 2f4b154

Please sign in to comment.