Skip to content

Commit 0ecbd9b

Browse files
committed
Update GoPage path
1 parent e665670 commit 0ecbd9b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const routes = [
2626
{ path: '/-', file: 'games.html' },
2727
{ path: '/!', file: 'settings.html' },
2828
{ path: '/0', file: 'tabs.html' },
29-
{ path: '/&', file: 'go.html' },
29+
{ path: '/1', file: 'go.html' },
3030
]
3131

3232
const fetchData = async (req, res, next, baseUrl) => {

static/apps.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
1313
<link rel="stylesheet" href="/assets/styles/main.css?v=1" />
1414
<link rel="stylesheet" href="/assets/styles/themes/default.css?v=2" />
15-
<script src="/assets/scripts/index.js?v=4"></script>
15+
<script src="/assets/scripts/index.js?v=5"></script>
1616
<script src="https://kit.fontawesome.com/1237c86ba0.js" crossorigin="anonymous"></script>
1717
<script src="assets/scripts/apps.js?v=11"></script>
1818
</head>

static/assets/scripts/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const input = document.getElementById('is')
44
if (form && input) {
55
form.addEventListener('submit', async (event) => {
66
event.preventDefault()
7-
processUrl(input.value, '/&')
7+
processUrl(input.value, '/1')
88
})
99
}
1010

@@ -31,7 +31,7 @@ function processUrl(value, path) {
3131
}
3232

3333
function go(value) {
34-
processUrl(value, '/&')
34+
processUrl(value, '/1')
3535
}
3636

3737
function blank(value) {

static/games.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
1111
<link rel="stylesheet" href="/assets/styles/main.css?v=1" />
1212
<link rel="stylesheet" href="/assets/styles/themes/default.css?v=2" />
13-
<script src="/assets/scripts/index.js?v=4"></script>
13+
<script src="/assets/scripts/index.js?v=5"></script>
1414
<script src="/assets/scripts/g.js?v=13"></script>
1515
</head>
1616
<body>

static/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h1>
5757
</div>
5858
</div> --->
5959
</div>
60-
<script src="assets/scripts/index.js?v=4"></script>
60+
<script src="assets/scripts/index.js?v=5"></script>
6161
<script src="./m/bundle.js"></script>
6262
<script src="./m/config.js"></script>
6363
<script src="https://kit.fontawesome.com/1237c86ba0.js" crossorigin="anonymous"></script>

0 commit comments

Comments
 (0)