Omnibus commited on
Commit
46847be
·
1 Parent(s): 0412bef

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +6 -5
index.html CHANGED
@@ -12,11 +12,12 @@
12
  <script>
13
  const queryString = window.location.search;
14
  const urlParams = new URLSearchParams(queryString);
15
- const main_url = "https://huggingface.co/datasets/Omnibus/game-data-1/resolve/main/images/"
16
- const sty = urlParams.get("format")
17
- const txt_s = urlParams.get("txt")
18
- document.getElementById("in_html").innerHTML=txt_s
19
- document.getElementById("in_html").style=sty
 
20
  </script>
21
  </body>
22
  </html>
 
12
  <script>
13
  const queryString = window.location.search;
14
  const urlParams = new URLSearchParams(queryString);
15
+ const links = urlParams.get("links")
16
+
17
+ for (const prop in links) {
18
+ console.log(prop);
19
+ }
20
+ document.getElementById("in_html").innerHTML=links
21
  </script>
22
  </body>
23
  </html>