diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2020-04-01 06:13:08 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2020-04-01 06:15:48 -0400 |
| commit | b23ea7474c6c3d806dc5cc620fdfd13843e5d415 (patch) | |
| tree | 1ba27b60c3e9c7b32e64b6cf80b3f751d532e045 /static | |
| parent | b945ab3cac79b113d976b429b0fffa3c72a49fdf (diff) | |
use ES6 modules for all JavaScript
Diffstat (limited to 'static')
| -rw-r--r-- | static/build.html | 2 | ||||
| -rw-r--r-- | static/faq.html | 2 | ||||
| -rw-r--r-- | static/index.html | 2 | ||||
| -rw-r--r-- | static/redirect.js | 2 | ||||
| -rw-r--r-- | static/releases.html | 4 | ||||
| -rw-r--r-- | static/releases.js | 2 | ||||
| -rw-r--r-- | static/usage.html | 2 |
7 files changed, 6 insertions, 10 deletions
diff --git a/static/build.html b/static/build.html index feb4c4fc..7b0aef37 100644 --- a/static/build.html +++ b/static/build.html @@ -23,6 +23,7 @@ <link rel="stylesheet" href="/grapheneos.css?16"/> <link rel="manifest" href="/manifest.webmanifest"/> <link rel="canonical" href="https://grapheneos.org/build"/> + <script type="module" src="/redirect.js?6"></script> </head> <body> <nav> @@ -935,6 +936,5 @@ export PATH="$PATH:$HOME/sdk/tools:$HOME/sdk/tools/bin:$HOME/sdk/platform-tools: <li><a href="https://reddit.com/r/GrapheneOS">Reddit</a></li> </ul> </footer> - <script src="/redirect.js?5"></script> </body> </html> diff --git a/static/faq.html b/static/faq.html index 7388d30e..c1f36ad7 100644 --- a/static/faq.html +++ b/static/faq.html @@ -23,6 +23,7 @@ <link rel="stylesheet" href="/grapheneos.css?16"/> <link rel="manifest" href="/manifest.webmanifest"/> <link rel="canonical" href="https://grapheneos.org/faq"/> + <script type="module" src="/redirect.js?6"></script> </head> <body> <nav> @@ -653,6 +654,5 @@ <li><a href="https://reddit.com/r/GrapheneOS">Reddit</a></li> </ul> </footer> - <script src="/redirect.js?5"></script> </body> </html> diff --git a/static/index.html b/static/index.html index 8f936186..e1c227c4 100644 --- a/static/index.html +++ b/static/index.html @@ -23,6 +23,7 @@ <link rel="stylesheet" href="/grapheneos.css?16"/> <link rel="manifest" href="/manifest.webmanifest"/> <link rel="canonical" href="https://grapheneos.org/"/> + <script type="module" src="/redirect.js?6"></script> </head> <body> <nav> @@ -114,6 +115,5 @@ <li><a href="https://reddit.com/r/GrapheneOS">Reddit</a></li> </ul> </footer> - <script src="/redirect.js?5"></script> </body> </html> diff --git a/static/redirect.js b/static/redirect.js index cbc198cc..54c5be82 100644 --- a/static/redirect.js +++ b/static/redirect.js @@ -1,7 +1,5 @@ // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT -"use strict"; - // Client-side redirects for fragments (anchors) // // It should be possible to do this with server-side redirects, but it was never implemented or diff --git a/static/releases.html b/static/releases.html index 99a9b133..a2f23e2f 100644 --- a/static/releases.html +++ b/static/releases.html @@ -23,6 +23,8 @@ <link rel="stylesheet" href="/grapheneos.css?16"/> <link rel="manifest" href="/manifest.webmanifest"/> <link rel="canonical" href="https://grapheneos.org/releases"/> + <script type="module" src="/releases.js?12"></script> + <script type="module" src="/redirect.js?6"></script> </head> <body> <nav> @@ -1098,7 +1100,5 @@ <li><a href="https://reddit.com/r/GrapheneOS">Reddit</a></li> </ul> </footer> - <script src="/releases.js?11"></script> - <script src="/redirect.js?5"></script> </body> </html> diff --git a/static/releases.js b/static/releases.js index 83297850..bf786163 100644 --- a/static/releases.js +++ b/static/releases.js @@ -1,7 +1,5 @@ // @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT -"use strict"; - const baseUrl = "https://releases.grapheneos.org/"; const versionBaseUrl = "https://github.com/GrapheneOS/platform_manifest/releases/tag/"; const devices = ["bonito", "sargo", "crosshatch", "blueline", "taimen", "walleye"]; diff --git a/static/usage.html b/static/usage.html index 72f43b07..428624ec 100644 --- a/static/usage.html +++ b/static/usage.html @@ -23,6 +23,7 @@ <link rel="stylesheet" href="/grapheneos.css?16"/> <link rel="manifest" href="/manifest.webmanifest"/> <link rel="canonical" href="https://grapheneos.org/usage"/> + <script type="module" src="/redirect.js?6"></script> </head> <body> <nav> @@ -335,6 +336,5 @@ <li><a href="https://reddit.com/r/GrapheneOS">Reddit</a></li> </ul> </footer> - <script src="/redirect.js?5"></script> </body> </html> |
