From 7ea5239eb16b224bf275b4c5a875c5dde84a9c47 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Thu, 26 Mar 2015 17:58:37 +0900 Subject: [PATCH] Fixing history pushState --- static/scripts/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/scripts/search.js b/static/scripts/search.js index 31b262d..6c2273d 100644 --- a/static/scripts/search.js +++ b/static/scripts/search.js @@ -116,7 +116,7 @@ } function saveSnapshot(results) { - window.history.pushState(results); + window.history.pushState(results, null, null); } function outputSnapshot(results, omitValues) {