Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
SeeChen committed Nov 27, 2024
1 parent bfbba15 commit 08272b3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
Empty file.
7 changes: 6 additions & 1 deletion JavaScript/General/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const myFunction = {
}
window.webpages.currentPages = SeeChen_CurrentPage;

await window.webpages.currentPages.init();
// await window.webpages.currentPages.init();
}
},

Expand Down Expand Up @@ -221,6 +221,11 @@ const routes = {
window.myData.travel.isProvice = false;
await routesFunction.travel();
},
"/旅行": async () => {
window.myData.travel.isCountry = false;
window.myData.travel.isProvice = false;
await routesFunction.travel();
},
"/travel/:countryId": async (
params
) => {
Expand Down
23 changes: 13 additions & 10 deletions spa.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C522VVXBTT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-C522VVXBTT');
</script>

<title>SEECHEN's Website</title>

Expand Down Expand Up @@ -56,15 +64,6 @@
<script src = "/JavaScript/Travel/travel.js" type = "module"></script>

<script src = "/JavaScript/Lens/lens.js" type = "module"></script>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C522VVXBTT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-C522VVXBTT');
</script>
</head>

<body>
Expand All @@ -90,7 +89,11 @@
</div>

<!-- Content Area -->
<div id="box_contentArea"></div>
<div id="box_contentArea">
<div id="box_projectsPage">

</div>
</div>

<!-- Footer Area -->
<div id="box_footerArea" class="notInDisplay"></div>
Expand Down

0 comments on commit 08272b3

Please sign in to comment.