-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #779 from vorth/59-icosahedra
WIP 59 Icosahedra app
- Loading branch information
Showing
11 changed files
with
3,927 additions
and
2 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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="shortcut icon" href="../../favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta | ||
name="description" | ||
content="The 59 stellations of the icosahedron" | ||
/> | ||
<title>The 59 Icosahedra</title> | ||
<link rel="stylesheet" href="../../App.css"> | ||
<link rel="manifest" href="./manifest.json"> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<script type="module" src="/modules/59icosahedra.js"></script> | ||
<script> | ||
// Check that service workers are supported | ||
if ('serviceWorker' in navigator) { | ||
// Use the window load event to keep the page load performant | ||
window.addEventListener('load', () => { | ||
navigator.serviceWorker.register( '../service-worker.js' ); | ||
}); | ||
} | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.