Spaces:
Running
Running
Update index.html
Browse files- 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] =
|
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 |
|