-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Highlight menu entry regarding the current path (#340)
* Highlight menu entry regarding the current path * Upgrade all libraries / Fix upgrade request * Upgrade Parcel * Fix pb with @parcel/optimizer-swc: cannot reassign to a variable declared with const --------- Co-authored-by: George Adams <georgeadams1995@gmail.com>
- Loading branch information
1 parent
3eaffbb
commit d7ea326
Showing
9 changed files
with
25,706 additions
and
9,977 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
node_modules | ||
dist | ||
.cache | ||
.parcel-cache | ||
.project | ||
.DS_Store | ||
.parcel-cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,13 @@ | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
|
||
<!-- Start Single Page Apps for GitHub Pages --> | ||
<script type="text/javascript"> | ||
// Single Page Apps for GitHub Pages | ||
// https://github.com/rafrex/spa-github-pages | ||
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License | ||
// ---------------------------------------------------------------------- | ||
// This script checks to see if a redirect is present in the query string | ||
// and converts it back into the correct url and adds it to the | ||
// browser's history using window.history.replaceState(...), | ||
// which won't cause the browser to attempt to load the new url. | ||
// When the single page app is loaded further down in this file, | ||
// the correct url will be waiting in the browser's history for | ||
// the single page app to route accordingly. | ||
(function (l) { | ||
if (l.search) { | ||
var q = {}; | ||
l.search.slice(1).split('&').forEach(function (v) { | ||
var a = v.split('='); | ||
q[a[0]] = a.slice(1).join('=').replace(/~and~/g, '&'); | ||
}); | ||
if (q.p !== undefined) { | ||
window.history.replaceState(null, null, | ||
l.pathname.slice(0, -1) + (q.p || '') + | ||
(q.q ? ('?' + q.q) : '') + | ||
l.hash | ||
); | ||
} | ||
} | ||
}(window.location)) | ||
</script> | ||
<!-- End Single Page Apps for GitHub Pages --> | ||
|
||
<link rel="shortcut icon" href="./src/favicon.ico"> | ||
<title>Download Dashboard | Adoptium</title> | ||
</head> | ||
|
||
<body> | ||
<div id="root"></div> | ||
<script src="src/index.js"></script> | ||
</body> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<link rel="shortcut icon" href="./src/favicon.ico"> | ||
<title>Download Dashboard | Adoptium</title> | ||
<script type="module" src="src/index.js"></script> | ||
</head> | ||
<body style="margin: 0!important;"> | ||
<div id="root"></div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.