Procházet zdrojové kódy

//redirect the TS with the hash of the saved playground

DEV-UNITY-6\Utilisateur před 6 roky
rodič
revize
db414bdb38
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. 5 1
      Playground/ts.html

+ 5 - 1
Playground/ts.html

@@ -1,4 +1,8 @@
 <script>
     localStorage.setItem("bjs-playground-scriptLanguage", "TS");
-    window.location = "./";
+
+    var parseURL = window.location.href.split("ts.html");
+    var hash = parseURL[parseURL.length - 1];
+
+    window.location = "./"+hash;
 </script>