Omnibus commited on
Commit
61fc6de
1 Parent(s): e0f67b3

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +5 -5
index.html CHANGED
@@ -17,14 +17,14 @@
17
  let i = 0;
18
 
19
  while (i < linkz.length) {
20
- linkz = linkz.replace("'","");
21
 
22
- console.log(linkz[i]);
23
  var a = document.createElement('a');
24
- var linkText = document.createTextNode(linkz[i]);
25
  a.appendChild(linkText);
26
- a.title = linkz[i];
27
- a.href = linkz[i];
28
  document.getElementById("in_html").appendChild(a);
29
  i++;
30
  };
 
17
  let i = 0;
18
 
19
  while (i < linkz.length) {
20
+ linkzz = linkz[i].replace("'","");
21
 
22
+ console.log(linkzz);
23
  var a = document.createElement('a');
24
+ var linkText = document.createTextNode(linkzz);
25
  a.appendChild(linkText);
26
+ a.title = linkzz;
27
+ a.href = linkzz;
28
  document.getElementById("in_html").appendChild(a);
29
  i++;
30
  };