mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Fix typo in comment and remove console.log leftover from debugging
This commit is contained in:
parent
b5357d3298
commit
293ee1bbcb
@ -27,11 +27,10 @@ var lastLocationHashSet = null;
|
||||
|
||||
|
||||
// We want to support some name / value pairs in the fragment
|
||||
// so we're re-using query string ike format
|
||||
// so we're re-using query string like format
|
||||
function parseQsFromFragment(location) {
|
||||
var hashparts = location.hash.split('?');
|
||||
if (hashparts.length > 1) {
|
||||
console.log(qs.parse(hashparts[1]));
|
||||
return qs.parse(hashparts[1]);
|
||||
}
|
||||
return {};
|
||||
|
Loading…
Reference in New Issue
Block a user