Commit 6ae60dfe authored by xiyuan's avatar xiyuan Committed by Commit bot

Fix authenticator.js history.replaceState call.

BUG=469591

Review URL: https://codereview.chromium.org/1031683002

Cr-Commit-Position: refs/heads/master@{#321798}
parent d57670fe
......@@ -266,7 +266,7 @@ cr.define('cr.login', function() {
if (history.state && history.state.url != url)
history.pushState({url: url}, '');
else
history.replaceState({url: url});
history.replaceState({url: url}, '');
};
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment