Almaatla commited on
Commit
b37af5b
·
verified ·
1 Parent(s): a394cbb

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +2 -1
index.html CHANGED
@@ -74,9 +74,10 @@
74
  const params = {};
75
 
76
  hash.split('&').forEach(part => {
 
77
  const [key, value] = part.split('=');
78
  if (key && value) {
79
- params[key] = decodeURIComponent(value);
80
  }
81
  });
82
 
 
74
  const params = {};
75
 
76
  hash.split('&').forEach(part => {
77
+ console.log(part);
78
  const [key, value] = part.split('=');
79
  if (key && value) {
80
+ params[key] = value;
81
  }
82
  });
83