We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit acfdd80Copy full SHA for acfdd80
distribution/index.html
@@ -0,0 +1,21 @@
1
+<!DOCTYPE html>
2
+<html>
3
+ <head>
4
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>TScript IDE</title>
7
+ </head>
8
+ <body>
9
+ <h1>The IDE moved!</h1>
10
+ <p>You can find it <a id="link" href="../">here</a>.</p>
11
+ <script type="text/javascript">
12
+ "use strict";
13
+ var url = new URL(
14
+ "../" + location.search + location.hash,
15
+ location.href
16
+ );
17
+ document.getElementById("link").href = url.toString();
18
+ location.replace(url);
19
+ </script>
20
+ </body>
21
+</html>
index.html
0 commit comments