From 9834ad49472c95e8ebc80c60581b8ac68838b681 Mon Sep 17 00:00:00 2001 From: Dean Codemo Date: Sat, 30 Jan 2016 00:51:25 +1100 Subject: [PATCH] fix history.replaceState() with base and null url --- src/history/html5.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/history/html5.js b/src/history/html5.js index cbfe2dc76..4f0898a4b 100644 --- a/src/history/html5.js +++ b/src/history/html5.js @@ -48,7 +48,7 @@ export default class HTML5History { x: window.pageXOffset, y: window.pageYOffset } - }, '') + }, '', location.href) // then push new state history.pushState({}, '', url) }