Skip to content

Commit

Permalink
test 5
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTeida committed Jan 18, 2024
1 parent 45ba031 commit cbe6eb1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 40 deletions.
28 changes: 14 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>

<!-- <script type="text/javascript">-->
<!-- (function (l) {-->
<!-- if (l.search[1] === "/") {-->
<!-- var decoded = l.search-->
<!-- .slice(1)-->
<!-- .split("&")-->
<!-- .map(function (s) {-->
<!-- return s.replace(/~and~/g, "&");-->
<!-- })-->
<!-- .join("?");-->
<!-- window.history.replaceState(null, null, l.pathname.slice(0, -1) + decoded + l.hash);-->
<!-- }-->
<!-- })(window.location);-->
<!-- </script>-->
<script type="text/javascript">
(function (l) {
if (l.search[1] === "/") {
var decoded = l.search
.slice(1)
.split("&")
.map(function (s) {
return s.replace(/~and~/g, "&");
})
.join("?");
window.history.replaceState(null, null, l.pathname.slice(0, -1) + decoded + l.hash);
}
})(window.location);
</script>
</head>
<body>
<div id="root"></div>
Expand Down
52 changes: 26 additions & 26 deletions public/404.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<!--<!DOCTYPE html>-->
<!--<html>-->
<!--<head>-->
<!-- <meta charset="utf-8" />-->
<!-- <title>React Router</title>-->
<!-- <script type="text/javascript">-->
<!-- var pathSegmentsToKeep = 1;-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>React Router</title>
<script type="text/javascript">
var pathSegmentsToKeep = 1;

<!-- var l = window.location;-->
<!-- l.replace(-->
<!-- l.protocol +-->
<!-- "//" +-->
<!-- l.hostname +-->
<!-- (l.port ? ":" + l.port : "") +-->
<!-- l.pathname-->
<!-- .split("/")-->
<!-- .slice(0, 1 + pathSegmentsToKeep)-->
<!-- .join("/") +-->
<!-- "/?/" +-->
<!-- l.pathname.slice(1).split("/").slice(pathSegmentsToKeep).join("/").replace(/&/g, "~and~") +-->
<!-- (l.search ? "&" + l.search.slice(1).replace(/&/g, "~and~") : "") +-->
<!-- l.hash-->
<!-- );-->
<!-- </script>-->
<!--</head>-->
<!--<body></body>-->
<!--</html>-->
var l = window.location;
l.replace(
l.protocol +
"//" +
l.hostname +
(l.port ? ":" + l.port : "") +
l.pathname
.split("/")
.slice(0, 1 + pathSegmentsToKeep)
.join("/") +
"/?/" +
l.pathname.slice(1).split("/").slice(pathSegmentsToKeep).join("/").replace(/&/g, "~and~") +
(l.search ? "&" + l.search.slice(1).replace(/&/g, "~and~") : "") +
l.hash
);
</script>
</head>
<body></body>
</html>

0 comments on commit cbe6eb1

Please sign in to comment.