Skip to content
Snippets Groups Projects
Commit 293ee1bb authored by Steven Hammerton's avatar Steven Hammerton
Browse files

Fix typo in comment and remove console.log leftover from debugging

parent b5357d32
No related branches found
No related tags found
No related merge requests found
......@@ -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 {};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment