From 293ee1bbcb787480be8acfda095ca3d56419d982 Mon Sep 17 00:00:00 2001 From: Steven Hammerton Date: Mon, 12 Oct 2015 17:41:56 +0100 Subject: [PATCH] Fix typo in comment and remove console.log leftover from debugging --- src/vector/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/vector/index.js b/src/vector/index.js index 1be71052c2..22db05a38f 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -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 {};